mirror of
https://github.com/Radarr/Radarr
synced 2025-12-16 05:14:29 +01:00
parent
b0afbce97c
commit
c7dfd9dcf1
1 changed files with 2 additions and 2 deletions
|
|
@ -55,11 +55,11 @@ public Decision IsSatisfiedBy(LocalMovie localMovie, DownloadClientItem download
|
|||
}
|
||||
catch (DirectoryNotFoundException ex)
|
||||
{
|
||||
_logger.Error("Unable to check free disk space while importing. " + ex.Message);
|
||||
_logger.Error(ex, "Unable to check free disk space while importing.");
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
_logger.Error(ex, "Unable to check free disk space while importing: " + localMovie.Path);
|
||||
_logger.Error(ex, "Unable to check free disk space while importing: {0}", localMovie.Path);
|
||||
}
|
||||
|
||||
return Decision.Accept();
|
||||
|
|
|
|||
Loading…
Reference in a new issue