Wish waiting for debugger to connect

Cableguy

Expert
Licensed User
Longtime User
Hi EREL,

After my last ODYSSEY with B4J and the PI, I have a wish to make!

Could it be implemented, when compiling in DEBUG mode, that a LOG would be made stating this fact?
In Android, the device gives us an "waiting for debugger to connect" message, so we know it's a debug compilation...
 

jmon

Well-Known Member
Licensed User
Longtime User
Yes same problem here, but easily fixed:
B4X:
#if DEBUG
    'Something specific to debug like a message box 
    'or change your app title
#end if
 
Top