Remove stacktrace if hardlink resulted in EXDEV.

Signed-off-by: Robin Dadswell <robin@dadswell.email>
This commit is contained in:
Taloth Saldono 2020-06-14 14:55:27 +02:00 committed by Qstick
parent 4aebf02d14
commit 360e68a793

View file

@ -424,9 +424,22 @@ public override bool TryCreateHardLink(string source, string destination)
fileInfo.CreateLink(destination);
return true;
}
catch (UnixIOException ex)
{
if (ex.ErrorCode == Errno.EXDEV)
{
_logger.Trace("Hardlink '{0}' to '{1}' failed due to cross-device access.", source, destination);
}
else
{
_logger.Debug(ex, "Hardlink '{0}' to '{1}' failed.", source, destination);
}
return false;
}
catch (Exception ex)
{
Logger.Debug(ex, string.Format("Hardlink '{0}' to '{1}' failed.", source, destination));
_logger.Debug(ex, "Hardlink '{0}' to '{1}' failed.", source, destination);
return false;
}
}