Fixed: Logging when series folder is moved successfully

Closes #2886

Co-Authored-By: David Newhall <2402929+davidnewhall@users.noreply.github.com>
This commit is contained in:
Qstick 2022-12-24 17:18:09 -06:00
parent 115e34d5b5
commit 6915a777a9
1 changed files with 1 additions and 1 deletions

View File

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