使用 Log4Net 记录函数名称

发布于 2024-10-11 02:30:10 字数 278 浏览 2 评论 0原文

可能的重复:
包装 Log4net 时如何记录 MethodName?

我有大量请求log4net 手动显示为“:活动”。这些请求都是手动构建的并且有些笨拙。 Log4Net 有什么方法可以获取源函数并自动记录吗?

Possible Duplicate:
How to log MethodName when wrapping Log4net?

I have tons of requests in log4net that show up manually as ": activity". The requests are all manually built and somewhat clumsy. Is there any way for Log4Net to pick up the source function and record that automatically?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

幻想少年梦 2024-10-18 02:30:10

当然,
您可以使用模式布局,通过指定 %method 标志您将输出调用方法名称,请参阅此处的文档:

http://logging.apache.org/log4net/release/sdk/log4net.Layout.PatternLayout.html

例如

<layout type="log4net.Layout.PatternLayout">
        <conversionPattern value="%d %-5p %C %method %m%n " />
      </layout>

,但请注意,如果您登录,这可能会降低性能您的应用程序中的许多消息都是时间紧迫的。

Sure,
you can use pattern layout, by specifying the %method flag you will output the calling method name, see the docs here:

http://logging.apache.org/log4net/release/sdk/log4net.Layout.PatternLayout.html

e.g.

<layout type="log4net.Layout.PatternLayout">
        <conversionPattern value="%d %-5p %C %method %m%n " />
      </layout>

but pay attention this can slow down the performance if you log a lot of messages ore your application is time-critical.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文