Log4net 停止记录时的通知
有没有办法在 log4net 停止记录时触发警报?如果可以,如何?
is there a way to trigger alerts when log4net stops logging?if so, how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有办法在 log4net 停止记录时触发警报?如果可以,如何?
is there a way to trigger alerts when log4net stops logging?if so, how?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
Log4net 提供了 IErrorHandler 接口,允许您在附加程序失败时执行某些操作。默认实现将第一个错误写入内部日志系统,但随后保持沉默。您可以轻松地实现不同的行为,但您应该小心,错误处理程序不会因为日志记录失败而使您的应用程序停止工作。
不是直接回答您的问题,但您可能会发现了解 AdoNetAppender 可以配置为 如果出现故障,请重新连接。
Log4net provides the
IErrorHandler
interface that would allow you to do something if an appender fails. The default implementation writes the first error to the internal logging system but then remains silent. You could easily implement a different behavior but you should be careful that your error handler does not make your application stop working because logging fails.Not directly an answer to your question but you might find it useful to know that the AdoNetAppender can be configured to reconnect if there is a failure.