mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-09 04:22:30 +01:00
Added more logging when free disk space check fails on import
This commit is contained in:
parent
551e6e2e5b
commit
bd4bd47e4e
@ -1,4 +1,5 @@
|
|||||||
using System.IO;
|
using System;
|
||||||
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using NLog;
|
using NLog;
|
||||||
using NzbDrone.Common;
|
using NzbDrone.Common;
|
||||||
@ -22,16 +23,24 @@ public FreeSpaceSpecification(IDiskProvider diskProvider, Logger logger)
|
|||||||
|
|
||||||
public bool IsSatisfiedBy(LocalEpisode localEpisode)
|
public bool IsSatisfiedBy(LocalEpisode localEpisode)
|
||||||
{
|
{
|
||||||
var path = Directory.GetParent(localEpisode.Series.Path);
|
try
|
||||||
var freeSpace = _diskProvider.GetAvilableSpace(path.FullName);
|
|
||||||
|
|
||||||
if (freeSpace < localEpisode.Size + 100.Megabytes())
|
|
||||||
{
|
{
|
||||||
_logger.Warn("Not enough free space to import: {0}", localEpisode);
|
var path = Directory.GetParent(localEpisode.Series.Path);
|
||||||
return false;
|
var freeSpace = _diskProvider.GetAvilableSpace(path.FullName);
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
if (freeSpace < localEpisode.Size + 100.Megabytes())
|
||||||
|
{
|
||||||
|
_logger.Warn("Not enough free space to import: {0}", localEpisode);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
_logger.ErrorException("Unable to check free disk space while importing: " + localEpisode.Path, ex);
|
||||||
|
throw;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user