使用 serilog 为单独的线程单独的日志文件

Separate log file for separate thread using serilog

我有一个具有多个线程的 .Net Worker Service 应用程序。我想将每个线程记录到单独的文件中,以便更容易阅读日志。有什么想法可以实现吗?

决定在 运行 时写入哪个接收器的常用方法是使用 Serilog.Sinks.Map:

Log.Logger = new LoggerConfiguration()
    .WriteTo.Map(_ => Thread.CurrentThread.ManagedThreadId,
        (threadId, wt) => wt.File($"log-{threadId}.log"))
.CreateLogger();

Log.Information("Hello from the main thread");

var task1 = Task.Run(() => Log.Information("Hello from thread X"));
var task2 = Task.Run(() => Log.Information("Hello from thread Y"));

Task.WaitAll(task1, task2);

Log.CloseAndFlush();

使用此方法时您应该考虑 limiting the number of open sinks