mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 18:57:39 -07:00
Fixed some exception logging where exceptions weren't logged.
This commit is contained in:
parent
883dffca80
commit
79b3a22c9a
5 changed files with 4 additions and 6 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -78,7 +78,7 @@ namespace NzbDrone.Update.Providers
|
|||
catch (Exception e)
|
||||
{
|
||||
RollBack(targetFolder);
|
||||
logger.Fatal("Failed to copy upgrade package to target folder.", e);
|
||||
logger.FatalException("Failed to copy upgrade package to target folder.", e);
|
||||
}
|
||||
finally
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue