mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
Log trace message when handling exceptions in the API
This commit is contained in:
@@ -20,6 +20,7 @@ namespace NzbDrone.Api.ErrorManagement
|
|||||||
|
|
||||||
public Response HandleException(NancyContext context, Exception exception)
|
public Response HandleException(NancyContext context, Exception exception)
|
||||||
{
|
{
|
||||||
|
_logger.Trace("Handling Exception");
|
||||||
|
|
||||||
var apiException = exception as ApiException;
|
var apiException = exception as ApiException;
|
||||||
|
|
||||||
@@ -49,7 +50,6 @@ namespace NzbDrone.Api.ErrorManagement
|
|||||||
}.AsResponse((HttpStatusCode)clientException.StatusCode);
|
}.AsResponse((HttpStatusCode)clientException.StatusCode);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (context.Request.Method == "PUT" || context.Request.Method == "POST")
|
if (context.Request.Method == "PUT" || context.Request.Method == "POST")
|
||||||
{
|
{
|
||||||
var sqLiteException = exception as SQLiteException;
|
var sqLiteException = exception as SQLiteException;
|
||||||
|
|||||||
Reference in New Issue
Block a user