1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

don't report DirectoryNotFoundException in FreeSpaceSpecification

This commit is contained in:
kayone 2013-11-30 16:34:21 -08:00
parent 91d64f0b6a
commit b43c4e04f8

View File

@ -44,6 +44,10 @@ public bool IsSatisfiedBy(LocalEpisode localEpisode)
return false;
}
}
catch (DirectoryNotFoundException ex)
{
_logger.Error("Unable to check free disk space while importing. " + ex.Message);
}
catch (Exception ex)
{
_logger.ErrorException("Unable to check free disk space while importing: " + localEpisode.Path, ex);