log4net 中的 SQL Appender 不记录除零错误

发布于 2024-10-21 03:47:10 字数 139 浏览 3 评论 0原文

错误在我的文件附加器中很好地出现,但在 sql 附加器中却没有。

有问题的行:

int x = 0;
int y = 1 / x;

编辑:显然它不会记录任何未处理的内容......

The errors are coming through fine in my file appender, but not in the sql appender.

Offending line:

int x = 0;
int y = 1 / x;

EDIT: apparently it doesn't log anything that's unhandled...

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

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

发布评论

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

评论(1

人疚 2024-10-28 03:47:10

也许您应该发布更多信息(例如 log4net 配置)...根据您所写的内容,我假设如下:

  • 您有一个调用 log4net 的异常处理程序,
  • 因此记录的异常由文件附加程序正确处理
  • 正常消息的日志记录有效对于两个附加程序都很好,

我认为这意味着 ado 附加程序的配置有问题。也许您尝试传递异常对象,但这在某种程度上无法正常工作(类型不匹配)。打开内部调试应该准确指出出了什么问题。

Maybe you should post a little more information (e.g. the log4net configuration)... based on what you write I assume the following:

  • You have an exception handler that calls log4net
  • Exceptions logged thus are processed correctly by a file appender
  • Logging of normal messages works fine for both appenders

I think that this means, there is something wrong with the configuration of the ado appender. Probably you try to pass the exception object and this somehow does not work correctly (type mismatch of sorts). Turning on internal debugging should indicated exactly what goes wrong.

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