使用 Log4Net 记录函数名称
我有大量请求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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当然,
您可以使用模式布局,通过指定 %method 标志您将输出调用方法名称,请参阅此处的文档:
http://logging.apache.org/log4net/release/sdk/log4net.Layout.PatternLayout.html
例如
,但请注意,如果您登录,这可能会降低性能您的应用程序中的许多消息都是时间紧迫的。
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.
but pay attention this can slow down the performance if you log a lot of messages ore your application is time-critical.