To get a Git project into your build:
- Add the JitPack repository to your build.gradle file
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
Checkout releases for the latest version.
dependencies {
implementation 'com.github.1amol2:LogUtils:0.1.2'
}
LogUtils utils = new LogUtils();
//For Debug Log
utils.logDebug("Tag","mssg");
//For Error Log
utils.logError("Tag","mssg");
//For Info Log
utils.logInfo("Tag","mssg");
//For Verbose Log
utils.logVerbose("Tag","mssg");
//For Warning Log
utils.logWarning("Tag","mssg");
//For wtf Log
utils.logWtf("Tag","mssg");