Fixed: Logging when series folder is moved successfully

Closes #2886

Co-Authored-By: David Newhall <2402929+davidnewhall@users.noreply.github.com>
pull/3245/head
Qstick 1 year ago
parent 115e34d5b5
commit 6915a777a9

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

Loading…
Cancel
Save