1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-10-30 15:32:31 +01:00

Log trace message when handling exceptions in the API

This commit is contained in:
Mark McDowall 2014-07-27 11:56:04 -07:00
parent e0dc7fe2f3
commit b63eb4efd7

View File

@ -20,6 +20,7 @@ namespace NzbDrone.Api.ErrorManagement
public Response HandleException(NancyContext context, Exception exception)
{
_logger.Trace("Handling Exception");
var apiException = exception as ApiException;
@ -49,7 +50,6 @@ namespace NzbDrone.Api.ErrorManagement
}.AsResponse((HttpStatusCode)clientException.StatusCode);
}
if (context.Request.Method == "PUT" || context.Request.Method == "POST")
{
var sqLiteException = exception as SQLiteException;