-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
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
fix log_requests_level
misconfiguration
#24056
Conversation
// Log level | ||
c.configureLogRequestLevel(conf.RawConfig.LogLevel) | ||
// Log requests level | ||
c.configureLogRequestsLevel(conf.RawConfig.LogRequestsLevel) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the actual fix (supplying LogRequestsLevel
instead of LogLevel
), the rest of the PR is tidy up.
Build Results: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
CI Results: |
A refactoring change introduced a bug where the incorrect value (log level rather than log requests level) is suppled to the receiver which configures the log requests level on a Core.
Fixes: #24045