mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-17 21:26:22 -04:00
Remove stacktrace if hardlink resulted in EXDEV.
This commit is contained in:
@@ -418,9 +418,22 @@ namespace NzbDrone.Mono.Disk
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user