M Michael Wenning Member Licensed User Longtime User Jan 31, 2019 #1 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 ** ...
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 ** ...
Erel B4X founder Staff member Licensed User Longtime User Jan 31, 2019 #2 The B4A version and compilation mode are not relevant. You can create a sub such as this one: B4X: Sub MyLog (s As String) #if DEBUG Log(s) #End If End Sub Use this sub instead of calling Log. Upvote 0
The B4A version and compilation mode are not relevant. You can create a sub such as this one: B4X: Sub MyLog (s As String) #if DEBUG Log(s) #End If End Sub Use this sub instead of calling Log.
DonManfred Expert Licensed User Longtime User Jan 31, 2019 #3 Erel said: Use this sub instead of calling Log. Click to expand... 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: Jan 31, 2019 Upvote 0
Erel said: Use this sub instead of calling Log. Click to expand... 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 **
Erel B4X founder Staff member Licensed User Longtime User Jan 31, 2019 #4 You are correct. I misunderstood. They cannot be removed. Upvote 0