gpt4 book ai didi

c# - 使用 NLog 和运行时参数记录到数据库

转载 作者:搜寻专家 更新时间:2023-10-30 19:48:04 25 4
gpt4 key购买 nike

我正在尝试使用 NLog 将一些信息记录到数据库中,但我只能在运行时检索一些数据库参数。尝试了一些解决方案,但没有成功。这是我的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"
autoReload="true">

<variable name="sqlDate" value="[${date:format=yyyy-MM-dd HH\:mm\:ss\.fff}]"/>

<targets>
<target name="dataBase"
xsi:type="Database"
dbProvider="System.Data.SqlClient"
connectionString="${gdc:item=myConnectionstring}"
dbDatabase="${gdc:item=myDataBase}">
<commandText>
INSERT INTO [TABLE_NAME]([COL1], [COL2] )
VALUES(@val1, @val2)
</commandText>
<parameter name="@val1" layout="${event-context:item=val1}"/>
<parameter name="@val2" layout="${event-context:item=val2}"/>
</target>
</targets>

<rules>
<logger name="_dataBase" levels="Info" writeTo="dataBase" final="true" />
</rules>
</nlog>

还有我的.NET C#代码:

public static class Log
{
private static NLog.Logger _logger = NLog.LogManager.GetCurrentClassLogger();
private static Config _config = LoadConfig();

public static void Info(string val1, string val2)
{
DatabaseTarget databaseTarget = (NLog.Targets.DatabaseTarget)NLog.LogManager.Configuration.FindTargetByName("dataBase");
databaseTarget.ConnectionString = _config.ConnectString;
databaseTarget.DBDatabase = _config.DBName;
NLog.LogManager.ReconfigExistingLoggers();

LogEventInfo info = new LogEventInfo(LogLevel.Info, "_dataBase", "Test_message");
info.Properties["val1"] = val1;
info.Properties["val2"] = val2;

_logger.Log(info);
}
}

它什么都不做:不崩溃,不向数据库写入任何数据。这是我的内部 NLog 日志:http://pastebin.com/0tLi9zJ1
我该如何解决这个问题?

附言很抱歉我最后一次尝试问这个问题,看来我忘了向它提供一些必要的信息。

最佳答案

所以,工作代码是:

<?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"
autoReload="true">

<variable name="sqlDate" value="${date:format=yyyy-MM-dd HH\:mm\:ss\.fff}"/>

<targets>
<target name="dataBase"
xsi:type="Database"
dbProvider="System.Data.SqlClient"
connectionString="${gdc:item=myConnectionString}"
dbDatabase="${gdc:item=myDataBase}">
<commandText>
INSERT INTO [TABLE_NAME]([COL1], [COL2] )
VALUES(@val1, @val2)
</commandText>
<parameter name="@val1" layout="${event-context:item=val1}"/>
<parameter name="@val2" layout="${event-context:item=val2}"/>
</target>
</targets>

<rules>
<logger name="_dataBase" levels="Info" writeTo="dataBase" final="true" />
</rules>
</nlog>
public static class Log
{
private static Config _config = LoadConfig();

public static void Info(string val1, string val2)
{
NLog.Logger logger = NLog.LogManager.GetLogger("_dataBase");

GlobalDiagnosticsContext.Set("myConnectionString", _config.ConnectString);
GlobalDiagnosticsContext.Set("myDataBase", _config.DBName);

LogEventInfo info = new LogEventInfo(LogLevel.Info, "_dataBase", "Test_message");
info.Properties["val1"] = val1;
info.Properties["val2"] = val2;

logger.Log(info);
}
}

关于c# - 使用 NLog 和运行时参数记录到数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30935930/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com