From 1a1d427c4213538f6561f690b6acc6c4297570bf Mon Sep 17 00:00:00 2001 From: David Newhall Date: Sun, 7 Aug 2022 12:03:27 -0700 Subject: [PATCH] Fixed: Logging when series folder is moved successfully --- src/NzbDrone.Core/Tv/MoveSeriesService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Tv/MoveSeriesService.cs b/src/NzbDrone.Core/Tv/MoveSeriesService.cs index a6a66598d..49e245d11 100644 --- a/src/NzbDrone.Core/Tv/MoveSeriesService.cs +++ b/src/NzbDrone.Core/Tv/MoveSeriesService.cs @@ -58,7 +58,7 @@ namespace NzbDrone.Core.Tv _diskProvider.CreateFolder(new DirectoryInfo(destinationPath).Parent.FullName); _diskTransferService.TransferFolder(sourcePath, destinationPath, TransferMode.Move); - _logger.ProgressInfo("{0} moved successfully to {1}", series.Title, series.Path); + _logger.ProgressInfo("{0} moved successfully to {1}", series.Title, destinationPath); _eventAggregator.PublishEvent(new SeriesMovedEvent(series, sourcePath, destinationPath)); }