Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 449 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 449 Bytes

Logger Library

Add to your project build.gradle

allprojects {
    repositories {
        maven { url 'https://jitpack.io' }
    }
}

Add to your app build.gradle

implementation 'com.github.JmzSoftware:Logger:-SNAPSHOT'

Add to MainActivity

Logger.init(this);

Examples

error("This is an error");
verbose("This is verbose log");
info("This is info log");
out("This is out log");