From 5ab61445b6e508ab19e81f8eade7317bbbcb3bb6 Mon Sep 17 00:00:00 2001 From: glax Date: Sun, 21 Sep 2025 04:10:44 +0200 Subject: [PATCH] correct log output --- API/MangaConnectors/MangaPark.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/API/MangaConnectors/MangaPark.cs b/API/MangaConnectors/MangaPark.cs index 4a7e0ee..84b3f8a 100644 --- a/API/MangaConnectors/MangaPark.cs +++ b/API/MangaConnectors/MangaPark.cs @@ -170,10 +170,10 @@ public class MangaPark : MangaConnector if (!linkMatch.Success || !linkMatch.Groups[2].Success) { - Log.Debug($"Not in standard Volume/Chapter format: {chapterNode.InnerText}"); + Log.Debug($"Not in standard Volume/Chapter format: {linkNode.InnerText}"); if (Match(linkNode.InnerText, @"[^\d]*([\d\.]+)[^\d]*") is not { Success: true } match) { - Log.Debug($"Unable to parse chapter-number: {chapterNode.InnerText}"); + Log.Debug($"Unable to parse chapter-number: {linkNode.InnerText}"); throw new FormatException("Unable to parse chapter-number"); } chapterNumber = match.Groups[1].Value;