fixup! New: Remote Path Mapping Logging Improvements

Co-authored-by: Mark McDowall <markus.mcd5@gmail.com>
This commit is contained in:
bakerboy448 2023-07-18 13:54:58 -05:00 committed by GitHub
parent 705f5f9d16
commit 56604c5bf3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

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