From d71757b56cf05ce4794804a81a644dd296bb93a9 Mon Sep 17 00:00:00 2001 From: Tixx <83774803+WiserTixx@users.noreply.github.com> Date: Sun, 29 Jun 2025 12:56:24 +0200 Subject: [PATCH] Switch Invalid INI line log to debug --- include/Utils.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/Utils.h b/include/Utils.h index 1606523..755e170 100644 --- a/include/Utils.h +++ b/include/Utils.h @@ -128,8 +128,8 @@ namespace Utils { } auto invalidLineLog = [&]{ - warn("Invalid INI line: " + line); - warn("Surrounding lines: \n" + + debug("Invalid INI line: " + line); + debug("Surrounding lines: \n" + (i > 0 ? sections[i - 1] : "") + "\n" + (i < sections.size() - 1 ? sections[i + 1] : "")); };