Invoke HttpFilters after the HttpErrorHandler

Is it possible to invoke the filters after the error handler? I compute the Result in the error handler based on the type of the exception and I have a filter that logs the response. If there is a server error, I want to first invoke the error handler to compute the Result and then log the response status and body using the filter.

Hi,

I have a similar problem. I want the filter to be applied AFTER the errorhandler have done its thing. Did you find any way to achieve this?

Thanks