log4net 中的 SQL Appender 不记录除零错误
错误在我的文件附加器中很好地出现,但在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许您应该发布更多信息(例如 log4net 配置)...根据您所写的内容,我假设如下:
我认为这意味着 ado 附加程序的配置有问题。也许您尝试传递异常对象,但这在某种程度上无法正常工作(类型不匹配)。打开内部调试应该准确指出出了什么问题。
Maybe you should post a little more information (e.g. the log4net configuration)... based on what you write I assume the following:
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.