In my build.gradle , the logcat is visible when
debugCompile 'org.slf4j:slf4j-android:1.6.1-RC1'
However when the version is updated , there is logcat
debugCompile 'org.slf4j:slf4j-android:1.7.14'
I am stuck with 1.6.1-RC1 version. Why the newer versions of slf4j-android:1.7.x are not logged in the logcat ?
I use SLF4J in the code like this
private static final Logger LOG = org.slf4j.LoggerFactory.getLogger(TAG);
LOG.debug("variable = {}", var);
References
http://www.slf4j.org/news.html ( changelog )