mirror of
https://github.com/Sonarr/Sonarr
synced 2025-01-02 13:14:58 +00:00
Don't log query strings
This commit is contained in:
parent
6b642e47ba
commit
c4936f0523
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ namespace NzbDrone.Api.ErrorManagement
|
||||||
}.AsResponse(HttpStatusCode.Conflict);
|
}.AsResponse(HttpStatusCode.Conflict);
|
||||||
}
|
}
|
||||||
|
|
||||||
var sqlErrorMessage = String.Format("[{0} {1}?{2}]", context.Request.Method, context.Request.Path, context.Request.Query);
|
var sqlErrorMessage = String.Format("[{0} {1}]", context.Request.Method, context.Request.Path);
|
||||||
|
|
||||||
_logger.ErrorException(sqlErrorMessage, sqLiteException);
|
_logger.ErrorException(sqlErrorMessage, sqLiteException);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue