noveogroup / android-logger

Useful logger for Android based on standard android.util.Log class. Simple lightweight (< 50 Kb) implementation of SLF4J API. Easy but powerful configuration via properties file and some additional helpful logging methods. Easy analogue of popular log4j library.

Home Page:https://noveogroup.github.io/android-logger

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to disable the log level

KingWu opened this issue · comments

Hi, i want to disable all logging levels including VERBOSE, DEBUG, INFO, WARN, ERROR, ASSERT in the release version. How can i configure it in the android_properties file. Thanks

Hi, try it:

root=ASSERT

It disables VERBOSE, DEBUG, INFO, WARN, ERROR except ASSERT.

I got this error message.

"Logger configuration file is empty. Default configuration will be used"
i place the android-logger.properties file under this path.
src/main/res/android-logger.properties

in the file, i just write this statement.
root=ASSERT

But, still cannot disable the DEBUG log.

Sorry, "root=ASSERT" is wrong configuration, because it is only half of solution.

Please try code sample (https://github.com/noveogroup/android-logger/tree/sample) and replace content of AndroidLoggerSample/src/main/res/android-logger.properties by:

root=ASSERT:AndroidLogger

Yeah. It works. Awesome. But, one more thing i want to ask.

If i comment these statements,

root=ASSERT:AndroidLogger
logger.ROOT=DEBUG:AndroidLogger-ROOT:MESSAGE:
logger.com.noveogroup.android.sample.log.downloader=DEBUG:AndroidLogger-Downloader

then i got this message.
09-12 14:18:51.362 11483-11483/com.noveogroup.android.sample.log A/com.noveogroup.android.sample.log.MainActivity﹕ 2014-09-12 14:18:51.376 com.noveogroup.android.sample.log.MainActivity.onCreate(MainActivity.java:21)
test ASSERT

The log can locate where i call it. But, now it does not display. How do i config it? Thanks

It was new undocumented feature. You can read about it here: Patterns.

Do not forget to update version to 1.3.2 to test this feature.
Now 1.3.2 is not available but Maven updates repository soon (~ 1-2 hours).

Wow. Great. One more thing would like to ask.

/com.noveogroup.android.sample.log.MainActivity﹕ 2014-09-12 14:18:51.376 com.noveogroup.android.sample.log.MainActivity.onCreate(MainActivity.java:21)

In log, we can see (MainActivity.java:21). Click it and then redirect to the java file. Can i config this feature?
Thanks

Do you mean how to configure logger to get such format of messages?

<Class Name>.<Method Name>(<File>:<Line Number>)

Which IDE did you use? In which log viewer did you try to click log messages?

yes. i want to get this format of message.

I use AndroidStudio. I view the log in logcat. And then, click the log, can redirect to the java file. Very nice =]

Check version 1.3.3 - there is %source mark.
It prints caller's source in format supported by Android Studio: (MainActivity.java:54).
See updated sample project for additional example.