diff options
Diffstat (limited to 'src/ConfigReader/ConfigReader.h')
-rw-r--r-- | src/ConfigReader/ConfigReader.h | 4 |
1 files changed, 0 insertions, 4 deletions
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 <boost/log/trivial.hpp> - #include <libconfig.h++> #include <string> @@ -26,7 +24,6 @@ public: template<typename T> 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; |