From 5cdb425d6843c100189611c2edb37b03efc1dc5a Mon Sep 17 00:00:00 2001 From: "Suren A. Chilingaryan" Date: Tue, 14 Aug 2018 21:58:29 +0200 Subject: Make it compatible with CentOS 7.5 --- src/ConfigReader/ConfigReader.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/ConfigReader') diff --git a/src/ConfigReader/ConfigReader.h b/src/ConfigReader/ConfigReader.h index 2819f41..f654a5a 100644 --- a/src/ConfigReader/ConfigReader.h +++ b/src/ConfigReader/ConfigReader.h @@ -11,8 +11,6 @@ #define CONFIGREADER_H #pragma once -#include - #include #include @@ -26,7 +24,6 @@ public: template bool lookupValue(const std::string& identifier, T& value) { bool ret = cfg.lookupValue(identifier.c_str(), value); - BOOST_LOG_TRIVIAL(debug) << "Configuration value " << identifier << ": " << value; return ret; } @@ -35,7 +32,6 @@ public: libconfig::Setting& s = cfg.lookup(identifier.c_str()); if(s.getLength() > index){ value = s[index]; - BOOST_LOG_TRIVIAL(debug) << "Configuration value " << identifier << "[" << index << "]: " << value; return true; } return false; -- cgit v1.2.3