-
Notifications
You must be signed in to change notification settings - Fork 10
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
Should logger replace NBSP with normal space? #22
Comments
I'm happy to work on this if you think it's a good idea fwiw. |
Hmm, |
I'm going to look at solving this tonight. Pretty sure this was my fault with #12 . Whoops. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Here's what's happening:
U+00A0
(non breaking space) rather than the usualU+0020
space.U+00A0
doesn't matchU+0020
.As an example, I isolated a line from one of my logs:
Which translates to this:
(ignore the endian-ness - the main thing to note is the use of
0xA0
inside "Small Luna")What do you think about simply replacing all
U+00A0
withU+0020
in the log output?The text was updated successfully, but these errors were encountered: