Does IExceptionLogger deprecate the need for ExceptionFilterAttribute in Web API 2?
Following the discussion from the official documentation on implementing an IExceptionLogger ( http://www.asp.net/web-api/overview/testing-and-debugging/web-api-global-error-handling ) which links to the (now dated?) article on implementing an ExceptionFilterAttribute ( http://www.asp.net/web-api/overview/testing-and-debugging/exception-handling ), is there any reason to register a global ExceptionFilterAttribute if you register a service for IExceptionLogger ? I did and when debugging an exception generated in a controller action, both implementations handled the exception. So