Less logging.

This commit is contained in:
Arthur Britto
2012-07-18 14:46:57 -07:00
parent 718d1ffa48
commit 219162c358
2 changed files with 5 additions and 5 deletions

View File

@@ -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<std::string, std::string> mapHeaders;

View File

@@ -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);