From 5fe2d7d1b751fa1106b4a5644dc531144d175789 Mon Sep 17 00:00:00 2001 From: jed Date: Sat, 9 Jun 2012 13:37:43 -0700 Subject: [PATCH] . --- src/RPCServer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/RPCServer.cpp b/src/RPCServer.cpp index b071c83c82..b5190f665d 100644 --- a/src/RPCServer.cpp +++ b/src/RPCServer.cpp @@ -2117,7 +2117,7 @@ Json::Value RPCServer::doCommand(const std::string& command, Json::Value& params void RPCServer::sendReply() { - std::cout << "RPC reply: " << mReplyStr << std::endl; + //std::cout << "RPC reply: " << mReplyStr << std::endl; boost::asio::async_write(mSocket, boost::asio::buffer(mReplyStr), boost::bind(&RPCServer::handle_write, shared_from_this(), boost::asio::placeholders::error)); @@ -2127,7 +2127,7 @@ void RPCServer::sendReply() void RPCServer::handle_write(const boost::system::error_code& e) { - std::cout << "async_write complete " << e << std::endl; + //std::cout << "async_write complete " << e << std::endl; if(!e) {