mirror of
https://github.com/lidarr/Lidarr
synced 2025-02-21 13:37:19 +00:00
Remove stacktrace if hardlink resulted in EXDEV.
This commit is contained in:
parent
330988c4f0
commit
16b9e88bb2
1 changed files with 14 additions and 1 deletions
|
@ -434,9 +434,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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue