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
The output of struct's String() suppose to be consumed as a formatted text primarily by a human. With something like this fmt.Printf("%+v", event).
String()
fmt.Printf("%+v", event)
Unfortunately current String() has a number of problems:
Printf()
Please remove the custom incorrect String() implementation and consider using the default implementation.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The output of struct's
String()
suppose to be consumed as a formatted text primarily by a human. With something like thisfmt.Printf("%+v", event)
.Unfortunately current
String()
has a number of problems:Printf()
does not print Env, probably because the current string prints NUL-symbol (it is a bad idea to use NUL-symbol).Please remove the custom incorrect
String()
implementation and consider using the default implementation.The text was updated successfully, but these errors were encountered: