如果框架中有IExceptionLogger
接口,为什么会出现异常日志记录(IExceptionFilter
)的概念?
答案 0 :(得分:0)
今天,在Web API中没有简单的方法可以全局记录或处理错误。可以通过异常过滤器处理一些未处理的异常,但是有一些异常过滤器无法处理的情况。例如:
Exceptions thrown from controller constructors
Exceptions thrown from message handlers
Exceptions thrown during routing
Exceptions thrown during response content serialization
更多here