Update logging to indicate a hardlink is being attempted

(cherry picked from commit 16e5ffa467f72e52c750143c835f6ee1c1c2460b)

Closes #9611
This commit is contained in:
bakerboy448 2024-01-14 14:16:53 -06:00 committed by Bogdan
parent 81b6bf521d
commit cc9a443473
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ namespace NzbDrone.Core.MediaFiles
if (_configService.CopyUsingHardlinks)
{
_logger.Debug("Hardlinking movie file: {0} to {1}", movieFile.Path, filePath);
_logger.Debug("Attempting to hardlink movie file: {0} to {1}", movieFile.Path, filePath);
return TransferFile(movieFile, localMovie.Movie, filePath, TransferMode.HardLinkOrCopy, localMovie);
}