diff --git a/src/CallRPC.cpp b/src/CallRPC.cpp index f12acaede6..38f697a1e7 100644 --- a/src/CallRPC.cpp +++ b/src/CallRPC.cpp @@ -131,7 +131,7 @@ Json::Value callRPC(const std::string& strMethod, const Json::Value& params) std::string strPost = createHTTPPost(strRequest, mapRequestHeaders); stream << strPost << std::flush; - std::cout << "post " << strPost << std::endl; + // std::cout << "post " << strPost << std::endl; // Receive reply std::map mapHeaders; diff --git a/src/Config.cpp b/src/Config.cpp index f2347cc6f0..e8e81747d3 100644 --- a/src/Config.cpp +++ b/src/Config.cpp @@ -106,9 +106,9 @@ void Config::setup(const std::string& strConf) if (ec) throw std::runtime_error(str(boost::format("Can not create %s") % DATA_DIR)); - std::cerr << "CONFIG FILE: " << CONFIG_FILE << std::endl; - std::cerr << "CONFIG DIR: " << CONFIG_DIR << std::endl; - std::cerr << "DATA DIR: " << DATA_DIR << std::endl; + // std::cerr << "CONFIG FILE: " << CONFIG_FILE << std::endl; + // std::cerr << "CONFIG DIR: " << CONFIG_DIR << std::endl; + // std::cerr << "DATA DIR: " << DATA_DIR << std::endl; // // Defaults @@ -190,7 +190,7 @@ void Config::load() if (smtTmp) { IPS = *smtTmp; - sectionEntriesPrint(&IPS, SECTION_IPS); + // sectionEntriesPrint(&IPS, SECTION_IPS); } (void) sectionSingleB(secConfig, SECTION_VALIDATORS_SITE, VALIDATORS_SITE);