don't report DirectoryNotFoundException in FreeSpaceSpecification

This commit is contained in:
kayone 2013-11-30 16:34:21 -08:00
parent 91d64f0b6a
commit b43c4e04f8
1 changed files with 4 additions and 0 deletions

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);