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 74a8a54 commit f41a871Copy full SHA for f41a871
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());
+ System.Diagnostics.Debug.WriteLine(buffer.ToString().Trim());
38
}
39
40
0 commit comments