I'm having a hard time understanding how the logging levels work.

I have set up Maven dependencies to enable slf4j to work in Android.

 <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-android</artifactId>
            <version>1.7.6</version>
  </dependency>

Maven does its stuff and I see I have the following dependencies
correctly installed:

http://i.imgur.com/HMeKRUC.jpg

In my app I have the following for testing purposes:-

logger.debug("XXX logger.debug");
Log.d("riley","XXX Log.d");

The Log.d() results in a logcat entry. The logger.debug() doesnt.

What have I missed or need to configure?

regards

r.
_______________________________________________
slf4j-user mailing list
[email protected]
http://mailman.qos.ch/mailman/listinfo/slf4j-user

Reply via email to