Logging
Native Android
Logging can be enabled using the static methods in the ValidicLog class.
ValidicLog.globalLoggingEnabled(true);By default, nothing is logged. To start logging update the LogLevel to the appropriate level.
ValidicLog.setLogLevel(ValidicLog.DEBUG);or set your own logging instance
ValidicLog.setLogger(new Logger(){
@Override
void log(int level, String tag, String msg){
Timber.log(level, msg);
}
}Updated 17 days ago
