A Simple and Clean Log Library.
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
dependencies {
compile 'com.github.nyinyihtunlwin:N-Log:0.1.1'
}
L.d("Debug-Tag", "HelloWorld, This is Debug log.");
L.e("Error-Tag", "HelloWorld, This is Error log.");
L.i("Info-Tag", "HelloWorld,This is Info log.");
L.w("Warn-Tag", "HelloWorld, This is Warn log.");
L.wtf("WTF-Tag", "HelloWorld, This is WTF log.");
- L.d("Debug-Tag", "HelloWorld, This is Debug log.");
- L.e("Error-Tag", "HelloWorld, This is Error log.");
- L.i("Info-Tag", "HelloWorld,This is Info log.");
- L.w("Warn-Tag", "HelloWorld, This is Warn log.");
- L.wtf("WTF-Tag", "HelloWorld, This is WTF log.");