From 83795f086cbef7646c86e4bd46323e5bb5b2c3f4 Mon Sep 17 00:00:00 2001 From: jed Date: Mon, 18 Jun 2012 19:43:43 -0700 Subject: [PATCH] . --- src/ConnectionPool.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ConnectionPool.cpp b/src/ConnectionPool.cpp index cfdad9432a..224331de27 100644 --- a/src/ConnectionPool.cpp +++ b/src/ConnectionPool.cpp @@ -163,7 +163,7 @@ void ConnectionPool::policyEnforce() { boost::posix_time::ptime tpNow = boost::posix_time::second_clock::universal_time(); - std::cerr << "policyEnforce: begin: " << tpNow << std::endl; + //std::cerr << "policyEnforce: begin: " << tpNow << std::endl; // Cancel any in progrss timer. (void) mPolicyTimer.cancel(); @@ -176,7 +176,7 @@ void ConnectionPool::policyEnforce() tpNext = boost::posix_time::second_clock::universal_time()+boost::posix_time::seconds(POLICY_INTERVAL_SECONDS); - std::cerr << "policyEnforce: schedule : " << tpNext << std::endl; + //std::cerr << "policyEnforce: schedule : " << tpNext << std::endl; mPolicyTimer.expires_at(tpNext); mPolicyTimer.async_wait(boost::bind(&ConnectionPool::policyHandler, this, _1));