From 56604c5bf36816504085d6d7987a5ce412bc8293 Mon Sep 17 00:00:00 2001 From: bakerboy448 <55419169+bakerboy448@users.noreply.github.com> Date: Tue, 18 Jul 2023 13:54:58 -0500 Subject: [PATCH] fixup! New: Remote Path Mapping Logging Improvements Co-authored-by: Mark McDowall --- .../RemotePathMappings/RemotePathMappingService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/RemotePathMappings/RemotePathMappingService.cs b/src/NzbDrone.Core/RemotePathMappings/RemotePathMappingService.cs index 1b19d3593..5e033b582 100644 --- a/src/NzbDrone.Core/RemotePathMappings/RemotePathMappingService.cs +++ b/src/NzbDrone.Core/RemotePathMappings/RemotePathMappingService.cs @@ -127,7 +127,7 @@ namespace NzbDrone.Core.RemotePathMappings return remotePath; } - _logger.Trace("Evaluating remote path remote mappings for match to host [{0}] reporting remote path [{1}]", host, remotePath.FullPath); + _logger.Trace("Evaluating remote path remote mappings for match to host [{0}] and remote path [{1}]", host, remotePath.FullPath); foreach (var mapping in All()) { _logger.Trace("Checking configured remote path mapping: {0} - {1}", mapping.Host, mapping.RemotePath); @@ -150,7 +150,7 @@ namespace NzbDrone.Core.RemotePathMappings return localPath; } - _logger.Trace("Evaluating remote path local mappings for match to host [{0}] with local [{1}]", host, localPath.FullPath); + _logger.Trace("Evaluating remote path local mappings for match to host [{0}] and local path [{1}]", host, localPath.FullPath); foreach (var mapping in All()) { _logger.Trace("Checking configured remote path mapping {0} - {1}", mapping.Host, mapping.RemotePath);