mirror of
https://github.com/BeamMP/BeamMP-Launcher.git
synced 2026-06-22 16:41:16 +00:00
Switch Invalid INI line log to debug
This commit is contained in:
+2
-2
@@ -128,8 +128,8 @@ namespace Utils {
|
|||||||
}
|
}
|
||||||
|
|
||||||
auto invalidLineLog = [&]{
|
auto invalidLineLog = [&]{
|
||||||
warn("Invalid INI line: " + line);
|
debug("Invalid INI line: " + line);
|
||||||
warn("Surrounding lines: \n" +
|
debug("Surrounding lines: \n" +
|
||||||
(i > 0 ? sections[i - 1] : "") + "\n" +
|
(i > 0 ? sections[i - 1] : "") + "\n" +
|
||||||
(i < sections.size() - 1 ? sections[i + 1] : ""));
|
(i < sections.size() - 1 ? sections[i + 1] : ""));
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user