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
@shivam-sharma7 here is a good one for you. Find all isDebugEnabled and remove the wrapper.
So
if (LOG.isDebugEnabled()) { LOG.debugf("Quinoa is re-routing SPA request '%s' to '/'", ctx.normalizedPath()); }
Should just be:
LOG.debugf("Quinoa is re-routing SPA request '%s' to '/'", ctx.normalizedPath());
The debugf part of the code internally already has the `isEnabled logic in it.
debugf
The text was updated successfully, but these errors were encountered:
@melloware the difference is more in evaluating the message string, but that's alright you can remove those
Sorry, something went wrong.
shivam-sharma7
Successfully merging a pull request may close this issue.
@shivam-sharma7 here is a good one for you. Find all isDebugEnabled and remove the wrapper.
So
Should just be:
The
debugf
part of the code internally already has the `isEnabled logic in it.The text was updated successfully, but these errors were encountered: