gpt4 book ai didi

c# - 为什么 log4Net 中没有跟踪级别?

转载 作者:IT王子 更新时间:2023-10-29 04:07:27 24 4
gpt4 key购买 nike

我只是想知道为什么没有 trace level在 log4Net 中。这个级别似乎缺失了,我有时觉得有必要使用它,例如输出应用程序中正在执行的事件。此功能是 part of log4J .

我知道我可以创建自定义关卡,就像我们所说的那样 here但我不想把时间和精力花在我认为应该属于图书馆本身的事情上。

您是否知道实现此功能的 log4net 扩展库,或者为什么它不是 .net 端口的一部分?

最佳答案

您可以使用扩展方法向 log4net 添加详细(或跟踪级别)。这是我正在使用的:

public static class ILogExtentions
{
public static void Trace(this ILog log, string message, Exception exception)
{
log.Logger.Log(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType,
log4net.Core.Level.Trace, message, exception);
}

public static void Trace(this ILog log, string message)
{
log.Trace(message, null);
}

public static void Verbose(this ILog log, string message, Exception exception)
{
log.Logger.Log(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType,
log4net.Core.Level.Verbose, message, exception);
}

public static void Verbose(this ILog log, string message)
{
log.Verbose(message, null);
}

}

使用示例:

public class ClientDAO
{
private static readonly log4net.ILog log = log4net.LogManager.GetLogger(typeof(ClientDAO));

public void GetClientByCode()
{
log.Trace("your verbose message here");
//....
}
}

来源:

http://www.matthewlowrance.com/post/2010/07/14/Logging-to-Trace-Verbose-etc-with-log4net.aspx

关于c# - 为什么 log4Net 中没有跟踪级别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1394661/

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