mirror of
https://github.com/BeamMP/BeamMP-Server.git
synced 2026-06-17 14:12:25 +00:00
remove debug prints
This commit is contained in:
@@ -172,7 +172,6 @@ void TConfig::ParseOldFormat() {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
info("Stripped:\n" + Content);
|
|
||||||
std::stringstream Str(Content);
|
std::stringstream Str(Content);
|
||||||
std::string Key, Ignore, Value;
|
std::string Key, Ignore, Value;
|
||||||
for (;;) {
|
for (;;) {
|
||||||
@@ -182,7 +181,6 @@ void TConfig::ParseOldFormat() {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
std::stringstream ValueStream(Value);
|
std::stringstream ValueStream(Value);
|
||||||
info(Key + " = " + Value);
|
|
||||||
ValueStream >> std::ws; // strip leading whitespace if any
|
ValueStream >> std::ws; // strip leading whitespace if any
|
||||||
Value = ValueStream.str();
|
Value = ValueStream.str();
|
||||||
if (Key == "Debug") {
|
if (Key == "Debug") {
|
||||||
|
|||||||
Reference in New Issue
Block a user