Skip to content

Commit

Permalink
remove debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
lionkor committed Jun 23, 2021
1 parent 9e861ab commit c82c53e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/TConfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,6 @@ void TConfig::ParseOldFormat() {
break;
}
}
info("Stripped:\n" + Content);
std::stringstream Str(Content);
std::string Key, Ignore, Value;
for (;;) {
Expand All @@ -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") {
Expand Down

0 comments on commit c82c53e

Please sign in to comment.