We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f41a871 commit b21d76cCopy full SHA for b21d76c
src/Serilog.Sinks.Debug/Sinks/Debug/DebugSink.cs
@@ -34,7 +34,7 @@ public void Emit(LogEvent logEvent)
34
using (var buffer = new StringWriter())
35
{
36
_formatter.Format(logEvent, buffer);
37
- System.Diagnostics.Debug.WriteLine(buffer.ToString().Trim());
+ System.Diagnostics.Debug.Write(buffer.ToString());
38
}
39
40
0 commit comments