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)); }