我读过很多类似主题的SO帖子,似乎都没有解决我的问题。
我的nlog.config
类似于:
<?xml version="1.0" encoding="utf-8"?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
xsi:schemaLocation="NLog NLog.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
autoReload="true"
throwExceptions="true"
internalLogIncludeTimestamp="true"
internalLogFile="nlog-internal.log"
internalLogLevel="Error">
<extensions>
<add assembly="NLog.Web.AspNetCore"/>
</extensions>
<targets>
<target xsi:type="Database"
name="database"
commandType="Text"
dbProvider="Npgsql.NpgsqlConnection, Npgsql"
connectionString="${var:appDbConnectionString}"
commandText="Layout">
<commandText>
insert into "logs" ("application", "user", "level", "message", "exception", "logger")
values (@application, @user, @level, @message, @exception, @logger);
</commandText>
<parameter name="@application" layout="My App" />
<parameter name="@user" layout="${aspnet-user-identity}" />
<parameter name="@level" layout="${level}" />
<parameter name="@message" layout="${message}" />
<parameter name="@exception" layout="${exception:format=tostring}" />
<parameter name="@logger" layout="${logger}" />
</target>
</targets>
<rules>
<logger name="MyApp.*" minlevel="Info" writeTo="database" final="true" />
<logger name="*" minlevel="Error" writeTo="database" final="true"/>
<logger name="*" minlevel="Warn" writeTo="database" final="true"/>
</rules>
</nlog>
...我的
Startup.cs
在ConfigureServices()
方法中调用此方法:services.AddLogging();
...我的
Startup.cs
在Configure()
方法中调用此方法:var loggerFactory = app.ApplicationServices.GetService<ILoggerFactory>();
LogManager.LoadConfiguration("nlog.config");
LogManager.Configuration.Variables["appDbConnectionString"] =
config["ConnectionStrings:ApplicationContext"];
loggerFactory.AddNLog();
...我
BuildWebHost(string[] args)
中的Program.cs
具有:public static IWebHost BuildWebHost(string[] args)
{
return WebHost.CreateDefaultBuilder(args)
.UseStartup<Startup>()
.UseNLog()
.Build();
}
我的ClaimsPrincipal已正确填写并配置了经过身份验证的用户,但是我不能将
{aspnet-user-identity}
设置为空白。我究竟做错了什么?
我正在使用NLog 4.5.10,NLog.Extensions.Logging 1.3.0和NLog.Web.AspNetCore 4.7.0;这些似乎是最新的库。
最佳答案
事实证明,NLog与IoC容器一起使用时会实现自己的服务定位器。我需要添加这样的一行:
app.ApplicationServices.SetupNLogServiceLocator();
...魔术发生了。我必须为此写一个issue in GitHub,但是他们几乎立即做出了回应
关于c# - NLog .NET Core aspnet用户身份始终为空,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52884266/