使用 log4net 启用日志记录!
是否可以使用 log4net 从同一程序记录到数据库和日志文件?
我希望代码的某些部分记录到数据库而不是日志文件。其他一切都可以像以前一样继续记录。
Is it possible to log to a database and a log file from the same program using log4net?
I want certain sections of my code to log to a DB instead of a log file. Everything else can continue to log as before.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 log4net 配置中,您只需要添加另一个附加程序即可完成。请查看此处了解如何配置附加程序。
让我们看一个配置示例(从 docs 窃取)
In the log4net configuration you just need to add another appender and its done. Have a look here on how to configure appenders.
Lets have a config example ( stolen from the docs )
正如 Felice 所说,只需在配置文件中添加另一个附加程序,这是一个具有多个附加程序的配置文件的示例:
http:// Pastebin.ca/2048432
As Felice said, just add another appender in your configuration file, here's an example of a config-file with multiple appenders:
http://pastebin.ca/2048432