Android Question usb log() output still functions in release mode

Michael Wenning

Member
Licensed User
Longtime User
I am using B4A Version 8.8, USB debugging and compile with "Release (obfuscated)" .
Is it possible to turn off basic logging?

*** Service (starter) Create ***
** Service (starter) Start **
** Activity (main) Create, isFirst = true **
** Activity (main) Resume **
*** Service (levelscanner) Create ***
** Service (levelscanner) Start **
*** Service (wificonnect) Create ***
** Service (wificonnect) Start **
...
 

DonManfred

Expert
Licensed User
Longtime User
Use this sub instead of calling Log.
right. But the TO want to prevent the basic logging TOO.

These are not LOG created but they can´t be configured as far as i know.
B4X:
*** Service (starter) Create ***
** Service (starter) Start **
** Activity (main) Create, isFirst = true **
** Activity (main) Resume **
*** Service (levelscanner) Create ***
** Service (levelscanner) Start **
*** Service (wificonnect) Create ***
** Service (wificonnect) Start **
 
Last edited:
Upvote 0
Top