I am using anko logger in my application. Anko log...
# android
t
I am using anko logger in my application. Anko logger is printing
info { "Test" }
but not other logging level like
debug { "Test" }
I read that info is enabled by default. We need to set the log level to debug to get it worked. I found this command
setprop  log.tag.MyApp  DEBUG
. How to execute this command to enable it for all classes ?
d
@tgmcians Maybe try Timber library, then you can use plugin for dev or production mode....