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
When the input start in the registering method we bleed the password in the log file.
I believe on exception we could also bleed the password since we just dump the content of the request object to the logger.
request
rescue StandardError, java.lang.Exception => e @logger.error? && @logger.error("Error eventifying response!", :exception => e, :exception_message => e.message, :name => name, :url => request, :response => response )
I think the easiest fix is to remove the URLs at the logger.info level and also remove the request and the response unless we are in debug mode.
logger.info
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When the input start in the registering method we bleed the password in the log file.
I believe on exception we could also bleed the password since we just dump the content of the
request
object to the logger.I think the easiest fix is to remove the URLs at the
logger.info
level and also remove the request and the response unless we are in debug mode.The text was updated successfully, but these errors were encountered: