Switch Invalid INI line log to debug

This commit is contained in:
Tixx
2025-06-29 12:56:24 +02:00
parent 7bef6f35c2
commit d71757b56c

View File

@@ -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] : ""));
};