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
With the new log redaction feature, we are seeing crashes in the logger when one of the values to be logged is nil
Example:
log.Debugf("RetrieveInterfaceStatusFromRamCache: %+v", ifStatus)
This panics if ifStatus is a pointer and is nil. It's completely valid in some cases to have a "nil" printed to the log.
The text was updated successfully, but these errors were encountered:
Please post the panic output with stack trace.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
With the new log redaction feature, we are seeing crashes in the logger when one of the values to be logged is nil
Example:
This panics if ifStatus is a pointer and is nil. It's completely valid in some cases to have a "nil" printed to the log.
The text was updated successfully, but these errors were encountered: