我的企业库 5 有问题。它正在将我希望它写入的所有信息写入事件日志,但是,它不尊重我配置的严重性设置。
我的异常处理配置块如下所示:
<exceptionHandlers>
<add name="Logging Exception Handler"
type="Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Logging...,"
logCategory="General"
eventId="10000"
severity="Critical"
title="My unknown error"
formatterType="Micros...ExceptionFormatter, Micros...ExceptionHandling"
priority="0" />
</exceptionHandlers>
我的事件日志侦听器模板以:
Severity: {severity}{newline}
事件日志条目记录为“错误”,而不是“严重”,但实际记录的消息包含文本“严重性:严重”
关于我如何实际将异常记录为关键的任何指针,而无需实际编写我自己的异常处理程序/格式化程序?