-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Description
now it's printing log always
public static void v(T tag, String message) {
message = StringUtils.notNullStr(message);
Log.v(TAG + "-" + tag.toString(), message);
addEntry(tag, LogLevel.v, message);
}
try to add a variable to control log is printed or not ,such as
public static void v(T tag, String message) {
message = StringUtils.notNullStr(message);
if(BuildConfig.debug){
Log.v(TAG + "-" + tag.toString(), message);
}
addEntry(tag, LogLevel.v, message);
}
Metadata
Metadata
Assignees
Labels
No labels