mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
Better logging if SQLite exception is thrown during API call
This commit is contained in:
@@ -50,11 +50,11 @@ namespace NzbDrone.Api.ErrorManagement
|
|||||||
}.AsResponse((HttpStatusCode)clientException.StatusCode);
|
}.AsResponse((HttpStatusCode)clientException.StatusCode);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (context.Request.Method == "PUT" || context.Request.Method == "POST")
|
var sqLiteException = exception as SQLiteException;
|
||||||
{
|
|
||||||
var sqLiteException = exception as SQLiteException;
|
|
||||||
|
|
||||||
if (sqLiteException != null)
|
if (sqLiteException != null)
|
||||||
|
{
|
||||||
|
if (context.Request.Method == "PUT" || context.Request.Method == "POST")
|
||||||
{
|
{
|
||||||
if (sqLiteException.Message.Contains("constraint failed"))
|
if (sqLiteException.Message.Contains("constraint failed"))
|
||||||
return new ErrorModel
|
return new ErrorModel
|
||||||
@@ -62,8 +62,12 @@ namespace NzbDrone.Api.ErrorManagement
|
|||||||
Message = exception.Message,
|
Message = exception.Message,
|
||||||
}.AsResponse(HttpStatusCode.Conflict);
|
}.AsResponse(HttpStatusCode.Conflict);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
var sqlErrorMessage = String.Format("[{0} {1}?{2}]", context.Request.Method, context.Request.Path, context.Request.Query);
|
||||||
|
|
||||||
|
_logger.ErrorException(sqlErrorMessage, sqLiteException);
|
||||||
|
}
|
||||||
|
|
||||||
_logger.FatalException("Request Failed", exception);
|
_logger.FatalException("Request Failed", exception);
|
||||||
|
|
||||||
return new ErrorModel
|
return new ErrorModel
|
||||||
|
|||||||
Reference in New Issue
Block a user