1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-22 22:15:17 -04:00

Fixed: Logging full error message to database

This commit is contained in:
Mark McDowall
2017-06-10 16:25:14 -07:00
parent d7cb5090fc
commit d0e226e269
12 changed files with 43 additions and 41 deletions
+1 -1
View File
@@ -68,7 +68,7 @@ namespace NzbDrone.Api.Indexers
}
catch (ReleaseDownloadException ex)
{
_logger.Error(ex);
_logger.Error(ex, ex.Message);
throw new NzbDroneClientException(HttpStatusCode.Conflict, "Getting release from indexer failed");
}