1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00

Fixed: Another Log Statement duplicating on Sentry

This commit is contained in:
Qstick 2019-09-01 10:52:01 -04:00
parent b2268c7452
commit b42004b32c

View File

@ -130,7 +130,7 @@ private void EnsureCovers(Movie movie, int retried = 0)
}
catch (Exception e)
{
_logger.Error(e, "Couldn't download media cover for " + movie);
_logger.Error(e, "Couldn't download media cover for {0}", movie);
}
EnsureResizedCovers(movie, cover, !alreadyExists);