don't report DirectoryNotFoundException in FreeSpaceSpecification

pull/4/head
kayone 11 years ago
parent 91d64f0b6a
commit b43c4e04f8

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

Loading…
Cancel
Save