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
Sometimes the string being logged contains control characters (bytes 0..=31). tracing currently outputs them literally, causing:
When the non-JSON formatter is used, escape control characters inside user-provided event strings.
Let the caller do the escaping. There may be a lot different places to fix across different projects.
See also hickory-dns/hickory-dns#2895.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Feature Request
Crates
Motivation
Sometimes the string being logged contains control characters (bytes 0..=31). tracing currently outputs them literally, causing:
Proposal
When the non-JSON formatter is used, escape control characters inside user-provided event strings.
Alternatives
Let the caller do the escaping. There may be a lot different places to fix across different projects.
See also hickory-dns/hickory-dns#2895.
The text was updated successfully, but these errors were encountered: