Fixed some exception logging where exceptions weren't logged.

This commit is contained in:
kay.one
2011-11-13 12:42:12 -08:00
parent 883dffca80
commit 79b3a22c9a
5 changed files with 4 additions and 6 deletions

View File

@@ -43,7 +43,7 @@ namespace NzbDrone.Update
}
catch (Exception e)
{
logger.Fatal("An error has occurred while applying update.", e);
logger.FatalException("An error has occurred while applying update package.", e);
}
}