I am working on Android 3.0. I have a service that is started on boot and I have some debug logging in it.
The problem is that I can't see the logs in the LogCat since the default log level is INFO after boot. Sometimes after boot when I run from shell 'getprop log.tag.MyTag' I get an empty line. Can't figure why.
I know that sometimes Android show debug logs even if it is set to INFO, but I have a check before each log print of the if the log level is enabled.
How can I change the default log level of a project?