1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-02-25 15:33:11 +00: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 @@ namespace NzbDrone.Core.MediaFiles.EpisodeImport.Specifications
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);