remove debug prints

This commit is contained in:
Lion Kortlepel
2021-06-23 16:40:08 +02:00
parent 9e861ab993
commit c82c53e3d1

View File

@@ -172,7 +172,6 @@ void TConfig::ParseOldFormat() {
break;
}
}
info("Stripped:\n" + Content);
std::stringstream Str(Content);
std::string Key, Ignore, Value;
for (;;) {
@@ -182,7 +181,6 @@ void TConfig::ParseOldFormat() {
break;
}
std::stringstream ValueStream(Value);
info(Key + " = " + Value);
ValueStream >> std::ws; // strip leading whitespace if any
Value = ValueStream.str();
if (Key == "Debug") {