From 6915a777a9567f581c3fe13590c00b26b22786db 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 #2886 Co-Authored-By: David Newhall <2402929+davidnewhall@users.noreply.github.com> --- src/NzbDrone.Core/Music/Services/MoveArtistService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Music/Services/MoveArtistService.cs b/src/NzbDrone.Core/Music/Services/MoveArtistService.cs index fc602b78a..867084001 100644 --- a/src/NzbDrone.Core/Music/Services/MoveArtistService.cs +++ b/src/NzbDrone.Core/Music/Services/MoveArtistService.cs @@ -66,7 +66,7 @@ namespace NzbDrone.Core.Music _diskProvider.CreateFolder(new DirectoryInfo(destinationPath).Parent.FullName); _diskTransferService.TransferFolder(sourcePath, destinationPath, TransferMode.Move); - _logger.ProgressInfo("{0} moved successfully to {1}", artist.Name, artist.Path); + _logger.ProgressInfo("{0} moved successfully to {1}", artist.Name, destinationPath); } _eventAggregator.PublishEvent(new ArtistMovedEvent(artist, sourcePath, destinationPath));