You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Serilog appears to handle NULL characters fine but printing it to a RichTextBox causes an issue.
If there is a NULL character in a string that is being logged, we end up with an unhandled exception.
msg = "\0";
Log.Information("{msg}", msg);
The text was updated successfully, but these errors were encountered:
The Console Sink appears to print garbage instead of the NULL character. My expectation would be to get a Unicode Symbol. Specifically U+2400 ␀ SYMBOL FOR NULL
Serilog appears to handle NULL characters fine but printing it to a RichTextBox causes an issue.
If there is a NULL character in a string that is being logged, we end up with an unhandled exception.
The text was updated successfully, but these errors were encountered: