From c82c53e3d153fac146c37094b85656f229492979 Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Wed, 23 Jun 2021 16:40:08 +0200 Subject: [PATCH] remove debug prints --- src/TConfig.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/TConfig.cpp b/src/TConfig.cpp index 959c8543..e28f55f6 100644 --- a/src/TConfig.cpp +++ b/src/TConfig.cpp @@ -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") {