10

日期时间的 RollingFile Sink 的当前输出如下

2015-04-06 18:40:54.400 +10:00 [Information] Hello World!

无论如何要删除时区偏移量吗?+10:00. 实现以下输出;

2015-04-06 18:40:54.400 [Information] Hello World!

就我而言,时区偏移量是多余的,只是弄乱了我的文本日志。

4

1 回答 1

25

您可以将outputTemplate参数指定给.RollingFile()配置方法:

.WriteTo.RollingFile(
    outputTemplate: "{Timestamp:yyyy-MM-dd HH:mm:ss.fff} [{Level}] {Message}{NewLine}{Exception}")
于 2015-04-07T21:32:20.470 回答