From 5726df841c000404a3fa59e919079ff6a7b6bd53 Mon Sep 17 00:00:00 2001 From: Qstick Date: Sat, 24 Dec 2022 17:18:09 -0600 Subject: [PATCH] Fixed: Logging when series folder is moved successfully Closes #1764 Co-Authored-By: David Newhall <2402929+davidnewhall@users.noreply.github.com> --- src/NzbDrone.Core/Books/Services/MoveAuthorService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Books/Services/MoveAuthorService.cs b/src/NzbDrone.Core/Books/Services/MoveAuthorService.cs index c3413997a..1c8712d72 100644 --- a/src/NzbDrone.Core/Books/Services/MoveAuthorService.cs +++ b/src/NzbDrone.Core/Books/Services/MoveAuthorService.cs @@ -61,7 +61,7 @@ private void MoveSingleAuthor(Author author, string sourcePath, string destinati _diskTransferService.TransferFolder(sourcePath, destinationPath, TransferMode.Move); - _logger.ProgressInfo("{0} moved successfully to {1}", author.Name, author.Path); + _logger.ProgressInfo("{0} moved successfully to {1}", author.Name, destinationPath); _eventAggregator.PublishEvent(new AuthorMovedEvent(author, sourcePath, destinationPath)); }