nyinyihtunlwin-codigo / N-Log

:guitar: A Simple and Clean Log Library.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

N-Log

A Simple and Clean Log Library.

How to

Step 1. Add it in your root build.gradle at the end of repositories:
	allprojects {
		repositories {
			...
			maven { url 'https://jitpack.io' }
		}
	}
Step 2. Add the dependency
	dependencies {
           compile 'com.github.nyinyihtunlwin:N-Log:0.1.1'
   }


Options

        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.");

Outputs

  • L.d("Debug-Tag", "HelloWorld, This is Debug log.");

alt text

  • L.e("Error-Tag", "HelloWorld, This is Error log.");

alt text

  • L.i("Info-Tag", "HelloWorld,This is Info log.");

alt text

  • L.w("Warn-Tag", "HelloWorld, This is Warn log.");

alt text

  • L.wtf("WTF-Tag", "HelloWorld, This is WTF log.");

alt text

License

MIT

About

:guitar: A Simple and Clean Log Library.

License:MIT License


Languages

Language:Java 100.0%