ASP.Net Classic Serilog 不写入文件

Posted

技术标签:

【中文标题】ASP.Net Classic Serilog 不写入文件【英文标题】:ASP.Net Classic Serilog not writing to file 【发布时间】:2021-09-15 08:19:12 【问题描述】:

我正在尝试创建一个具有统一性的 ilogger,并且它创建得很好,但是当我调用记录器时,没有任何内容写入文件。 我错过了什么?

这是我的团结

container.RegisterType<ILogger>(new ContainerControlledLifetimeManager(), new InjectionFactory((ctr, type, name) => 

ILogger log = new LoggerConfiguration()
.Enrich.FromLogContext()
.Enrich.WithThreadId()
.Enrich.WIthProperty("ApplicationVersion", GetApplicationVersion())
.WriteTo
  .Logger(lc => lc.Filter
                .ByIncludingOnly(e => e.Level == LogEventLevel.Information || e.Level == LogEventLevel.Debug)
.WriteTo.RollingFile(Path.Combine(path, @"\infolog - Date.txt")))
.CreateLogger();

return log;
));

然后在我的控制器中注入它

MyClass(ILogger ilog)
_ilog = ilog;


public void DoSomething()
this._ilog.Information("logged message");

我希望在名为 Errorlogs/info-07032021.txt 的目录中看到一个日志文件 但什么都没有。我错过了什么?

【问题讨论】:

Date 之间应该有空格吗? 【参考方案1】:

找到了。路径组合仅在第二个参数不是绝对路径时才有效。所以我不得不删除“@”

我必须成功

   .WriteTo.RollingFile(path + "\infolog - Date.txt")

【讨论】:

以上是关于ASP.Net Classic Serilog 不写入文件的主要内容,如果未能解决你的问题,请参考以下文章

创建返回 Serilog LoggerConfiguration 的方法(Asp.Net Core 2.0)

在 ASP.NET Core 中使用 Serilog 使用 Fluentd 将日志写入 Elasticsearch

无法从Windows服务中托管的Asp.net核心网站启动多个Serilog接收器

C# ASP.NET Core Serilog 添加类名和方法到日志

在带有数据库的 ASP.NET Core 5.0 应用程序中使用 Serilog 实现日志记录

ASP.NET Classic 不使用 WebForm_PostBackOptions 的默认选项创建按钮回发