I have many Log.i
and Log.d
in my app. When running on real device I see log output of every log statement in DDMS
either using session filter or no filter.
When I disconnect USB and perform actions in my app to produce debug
log lines it does not generate output lines. Checking historical logcat
output via adb
I got no entry out of my app
when running: logcat -b events -v time -d *:*
In manifest I have
android:debuggable="true"
Running adb -d shell getprop
contains
[ro.debuggable]: [0]
I guess similar question relates to mine: How can I enable/disable the Debug-mode on my Samsung device?
On the device (2.3.6) USB debuggig is enabled under settings-application-development.
My goal would be to get log entries generated by my app when device is not connected to computer.