We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
now it's printing log always
try to add a variable to control log is printed or not ,such as
The text was updated successfully, but these errors were encountered: