我可以将ILogger <T>与企业库日志一起使用吗?

时间:2019-07-10 15:05:13

标签: logging .net-core migration enterprise-library

我正在将应用程序迁移到现有的.net核心应用程序中。现有应用程序使用ILogger <>进行记录,而迁移应用程序使用企业库。

这些可以共存吗?如何将企业库变成ILogger编写器?

1 个答案:

答案 0 :(得分:0)

我看不到任何将企业库链接到ILogger的nuget包。

您可能必须创建自己的ILoggerProvider,该ILoggerProvider会写入企业库。

有些博客可以为您提供帮助

https://asp.net-hacker.rocks/2017/05/05/add-custom-logging-in-aspnetcore.html https://andrewlock.net/creating-a-rolling-file-logging-provider-for-asp-net-core-2-0/