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
There are some cases that a logger is wrapped by a method:
@Override public void debug(Object message) { log.log(Level.FINE, String.valueOf(message)); }
More cases in bazel:
https://github.com/bazelbuild/bazel/blob/e8f4e5e506e6d82c15d363e818b1b70c97a70a68/third_party/aws-sdk-auth-lite/src/main/java/com/amazonaws/log/JulLog.java#L32-L69
Currently, our plugin doesn't process these cases. We may need to process them like what we did for if-statements.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There are some cases that a logger is wrapped by a method:
More cases in bazel:
https://github.com/bazelbuild/bazel/blob/e8f4e5e506e6d82c15d363e818b1b70c97a70a68/third_party/aws-sdk-auth-lite/src/main/java/com/amazonaws/log/JulLog.java#L32-L69
Currently, our plugin doesn't process these cases. We may need to process them like what we did for if-statements.
The text was updated successfully, but these errors were encountered: