1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-02-07 23:17:35 +00:00

DownloadString exceptions are no longer reported.

This commit is contained in:
Keivan Beigi 2012-05-10 17:08:30 -07:00
parent 057e248f8f
commit 7e5445fa3a

View file

@ -43,7 +43,7 @@ namespace NzbDrone.Common
}
catch (Exception ex)
{
logger.TraceException(ex.Message, ex);
logger.Trace(ex.Message, ex.ToString());
throw;
}
}