From 24bd2ae59b3b3022af3646310c118a7e95ac98f7 Mon Sep 17 00:00:00 2001 From: Bogdan Date: Tue, 16 May 2023 18:33:33 +0300 Subject: [PATCH] Log path in MediaFileAttributeService --- src/NzbDrone.Core/MediaFiles/MediaFileAttributeService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/MediaFiles/MediaFileAttributeService.cs b/src/NzbDrone.Core/MediaFiles/MediaFileAttributeService.cs index 0549ad773..a7122d490 100644 --- a/src/NzbDrone.Core/MediaFiles/MediaFileAttributeService.cs +++ b/src/NzbDrone.Core/MediaFiles/MediaFileAttributeService.cs @@ -42,12 +42,12 @@ namespace NzbDrone.Core.MediaFiles { if (ex is UnauthorizedAccessException || ex is InvalidOperationException || ex is FileNotFoundException) { - _logger.Debug("Unable to apply folder permissions to: ", path); + _logger.Debug("Unable to apply folder permissions to: {0}", path); _logger.Debug(ex, ex.Message); } else { - _logger.Warn("Unable to apply folder permissions to: ", path); + _logger.Warn("Unable to apply folder permissions to: {0}", path); _logger.Warn(ex, ex.Message); } }