mirror of
https://github.com/lidarr/Lidarr
synced 2025-01-31 19:32:51 +00:00
Added size information when Size spec rejects import
This commit is contained in:
parent
acee943d47
commit
259c408b67
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ public bool IsSatisfiedBy(LocalEpisode localEpisode)
|
||||||
|
|
||||||
if (freeSpace < localEpisode.Size + 100.Megabytes())
|
if (freeSpace < localEpisode.Size + 100.Megabytes())
|
||||||
{
|
{
|
||||||
_logger.Warn("Not enough free space to import: {0}", localEpisode);
|
_logger.Warn("Not enough free space ({0}) to import: {1} ({2})", freeSpace, localEpisode, localEpisode.Size);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue