From a70fa0fcfed276b2de85c99238932154aa086a6b Mon Sep 17 00:00:00 2001 From: Bogdan Date: Sat, 27 Jan 2024 17:58:43 +0200 Subject: [PATCH] Fix improve parsing logging --- src/NzbDrone.Core/Parser/ParsingService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Parser/ParsingService.cs b/src/NzbDrone.Core/Parser/ParsingService.cs index 128c08f33..18da76b92 100644 --- a/src/NzbDrone.Core/Parser/ParsingService.cs +++ b/src/NzbDrone.Core/Parser/ParsingService.cs @@ -147,7 +147,7 @@ namespace NzbDrone.Core.Parser if (result == null) { - _logger.Debug($"No matching movie for titles '{string.Join(", ", parsedMovieInfo.MovieTitles)} ({parsedMovieInfo.Year})"'); + _logger.Debug($"No matching movie for titles '{string.Join(", ", parsedMovieInfo.MovieTitles)} ({parsedMovieInfo.Year})'"); } return result;