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

本文关键字:记录 数据库 参数 运行时 NLog 使用 | 更新日期: 2023-09-27 17:57:19

我正在尝试使用 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
我该如何解决这个问题?

<块引用类>

附言很抱歉我上次尝试问这个问题,看起来我忘了放一些必要的信息。

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

因此,工作代码是:

<?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);
    }
}