-
-
Notifications
You must be signed in to change notification settings - Fork 231
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
quote value in ConsoleRender
like LogfmtRenderer
for special chars
#647
Comments
ConsoleRender
ConsoleRender
like LogfmtRenderer
for special chars
Would you mind opening a PR? |
I can open a PR, but I'm not sure which solution you prefer. simple repr or only quote str with spaces? |
I prefer simple |
OK, did't notice there is already |
9 tasks
fixed by #649 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
logger.info("hello", a="1 b=2")
will be logged ashello1 a=1 b=2
and may cause some problem, maybe we should quote value when it contain any spacefor example:
or just return
repr(val)
The text was updated successfully, but these errors were encountered: