The System.Diagnostics.Trace sink for Serilog.
$ dotnet add package Serilog.Sinks.TraceNote: this sink writes regular log events to
System.Diagnostics.Trace. If you're looking for distributed/hierarchical tracing with Serilog, see SerilogTracing instead.
Writes Serilog events to System.Diagnostics.Trace.
var log = new LoggerConfiguration()
.WriteTo.Trace()
.CreateLogger();
Copyright © Serilog Contributors - Provided under the Apache License, Version 2.0.