Fixed: More improvements to sentry logging (#669)

* Only add the exception message for some types

* Cleanse exception messages also

* Don't put exception message into log

It breaks the sentry grouping

* Combine the two calculations of fingerprint
This commit is contained in:
ta264
2019-03-13 23:10:58 +00:00
committed by Qstick
parent d6b4c4a9ed
commit 1c7ded859b
13 changed files with 36 additions and 72 deletions
@@ -462,7 +462,7 @@ namespace NzbDrone.Core.Extras.Metadata
}
catch (Exception ex)
{
_logger.Error(ex, "Couldn't download image {0} for {1}. {2}", image.Url, artist, ex.Message);
_logger.Error(ex, "Couldn't download image {0} for {1}", image.Url, artist);
}
}