gpt4 book ai didi

c# - 无法让 NLog 自定义目标工作

转载 作者:行者123 更新时间:2023-12-04 03:11:41 25 4
gpt4 key购买 nike

我真的很难获得与 NLog 一起使用的基本自定义目标。

程序.cs

using NLog;
using NLog.Targets;



namespace NLogTestConsole
{
class Program
{
private static Logger logger = null;

static Program()
{
logger = LogManager.GetCurrentClassLogger();
Target.Register<NLogTestConsole.Gerald>("Gerald");
}

static void Main(string[] args)
{
logger.Trace("Sample trace message");
logger.Debug("Sample debug message");
logger.Info("Sample informational message");
logger.Warn("Sample warning message");
logger.Error("Sample error message");
logger.Fatal("Sample fatal error message");
}
}
}

NLogCustomTarget.cs

using NLog;
using NLog.Targets;



namespace NLogTestConsole
{

[Target("Gerald")]
public sealed class Gerald : TargetWithLayout
{
public Gerald()
{
// this.Host = "localhost";
}

//[RequiredParameter]
//public string Host { get; set; }

protected override void Write(LogEventInfo logEvent)
{
// Breakpoint here never gets hit
string logMessage = this.Layout.Render(logEvent);

System.Console.WriteLine("MYCUSTOMMSG: " + logMessage);
}

private void SendTheMessageToRemoteHost(string host, string message)
{
// TODO - write me
}
}

}

NLog.config

<?xml version="1.0" encoding="utf-8" ?>
<nlog autoReload="true"
throwExceptions="false"
internalLogLevel="Off"
internalLogFile="c:\temp\nlog-internal.log">

<!-- optional, add some variables
https://github.com/nlog/NLog/wiki/Configuration-file#variables -->
<variable name="myvar" value="myvalue"/>

<!-- See https://github.com/nlog/nlog/wiki/Configuration-file
for information on customizing logging rules and outputs. -->
<targets>
<!-- add your targets here
See https://github.com/nlog/NLog/wiki/Targets for possible targets.
See https://github.com/nlog/NLog/wiki/Layout-Renderers for the possible layout renderers. -->

<!-- Write events to a file with the date in the filename.
<target xsi:type="File" name="f" fileName="${basedir}/logs/${shortdate}.log"
layout="${longdate} ${uppercase:${level}} ${message}" /> -->

<target name="logfile" type="File" fileName="file.txt" />
<target name="console" type="Console" />
<target name="debugger" type="Debugger"/>
<target name="Gerald" type="Gerald"/>
</targets>

<rules>
<!-- Write all events with minimal level of Debug (So Debug, Info, Warn, Error and Fatal, but not Trace) to "f"
<logger name="*" minlevel="Debug" writeTo="f" /> -->

<logger name="*" minlevel="Trace" writeTo="logfile" />
<logger name="*" minlevel="Info" writeTo="console" />
<logger name="*" minlevel="Trace" writeTo="debugger" />
<logger name="*" minlevel="Trace" writeTo="Gerald" />
</rules>
</nlog>

如果我注释掉“Gerald”目标,我将记录到文件、控制台和调试输出。有了那条线,什么都不管用我做错了什么?

谢谢,

亚当。

最佳答案

启用内部日志,在c:\temp\nlog-internal.log中查看错误:

internalLogLevel="Warn"

关于c# - 无法让 NLog 自定义目标工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44826773/

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