1.用VS2022新建一个.NET6 MVC项目。
2.使用nuget引用NLog.Extensions.Logging。
3.项目中新建一个NLog.config配置文件,右键属性设置为“如果内容较新则复制”,NLog.config文件内容如下:
<?xml version="1.0" encoding="utf-8" ?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.nlog-project.org/schemas/NLog.xsd NLog.xsd"
autoReload="true"
throwExceptions="false"
internalLogLevel="Off" internalLogFile="c:\temp\nlog-internal.log">
<variable name="myvar" value="myvalue"/>
<targets>
<target xsi:type="File" name="f" fileName="${basedir}/logs/${shortdate}.log"
layout="${longdate} ${uppercase:${level}} ${message}"
maxArchiveFiles="999"
archiveAboveSize="10485760"/>
</targets>
<rules>
<logger name="*" minlevel="Debug" writeTo="f" />
</rules>
</nlog>
4.这时就可以直接使用NLOG了,代码如下:
NLog.LogManager.GetCurrentClassLogger().Info("ddd");
5.如果要配置ILogger一起使用,则需要修改Program.cs文件。
5.1 引入命名空间:
using NLog.Extensions.Logging;
5.2 在“builder.Build()”前增加一行:
builder.Services.AddLogging(m => { m.AddNLog(); });
6.在Controller中使用:
private readonly ILogger<HomeController> _logger;
public HomeController(ILogger<HomeController> logger)
{
_logger = logger;
}
public IActionResult Index()
{
NLog.LogManager.GetCurrentClassLogger().Info("ddd");
_logger.LogInformation("eee");
_logger.LogError("ffff");
return View();
}