gpt4 book ai didi

c# - 如何在其他项目中添加NLog Class Library项目

转载 作者:太空狗 更新时间:2023-10-29 21:33:03 24 4
gpt4 key购买 nike


我在 C# 中创建了一个控制台项目,在该项目中我使用 NLog 进行日志记录。
当我运行该项目时,它成功登录到多个目标,如控制台、文件、事件日志以及 Sentinal。
但是当我将这个项目作为一个类库并尝试将引用添加到另一个项目时,它不会记录到任何目标。当然,项目中没有错误。
以下是代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using NLog;
using NLog.Config;

namespace NLogger
{
public class logWrapper
{
private static Logger logger = LogManager.GetCurrentClassLogger();
public void LevelLogger(string level, string msg)
{
if (level == "Trace")
Trace(msg);
else if (level == "Info")
Info(msg);
else if (level == "Error")
Error(msg);
else if (level == "Debug")
Debug(msg);
else if (level == "Warn")
Warn(msg);
}

public void Trace(string msg)
{
try
{
logger.Trace(msg);
}
catch (Exception ex)
{
throw;
}
}

public void Info(string msg)
{
logger.Info(msg);
}

public void Error(string msg)
{
logger.Error(msg);
}
public void Debug(string msg)
{
logger.Debug(msg);
}
public void Warn(string msg)
{
logger.Warn(msg);
}

//Uncomment following when the project type is Console App. --Debugging purpose only

//public static void Main(string[] args)
//{
// logWrapper l = new logWrapper();
// l.LevelLogger("Info", "INFORMATION");
//}
}
}

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" >
<targets>
<target xsi:type="File" name="file" layout="${longdate}|${level}|${message}|${callsite:fileName=true}${newLine}"
fileName="C:\Users\sharathk\Desktop\ToCompare\${shortdate}_Log.txt"/>
<target name="viewer" xsi:type="NLogViewer" address="udp://10.100.18.166:9999"/>
<target xsi:type="EventLog" name="event" layout="${longdate}|${level}|${message}|${callsite:fileName=true}" source="NLogger"/>
<target name="console" xsi:type="Console"
layout="${date:format=HH\:mm\:ss}|${level}|${stacktrace}|${message}" />
</targets>

<rules>
<!-- add your logging rules here -->
<logger name="*" minlevel="Trace" writeTo="file,event,viewer,console" />
</rules>
</nlog>

我正在将此项目 dll 添加到另一个项目,但它没有正常工作。

我正在为 logWrapper 类创建对象并调用该方法来记录信息,但它根本不起作用。请让我知道我在这里犯的错误。

最佳答案

为什么它没有运行:您的新项目是否有 NLog.config 文件?

如果您需要从所有项目的单个 nlog.config 加载,您:

NLog.LogManager.Configuration = new NLog.Config.XmlLoggingConfiguration( "<your path>" + "\\NLog.config", true);

关于c# - 如何在其他项目中添加NLog Class Library项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32817607/

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