git-svn-id: svn://elaine/murooma/trunk@315 d8a302eb-03bc-478d-80e4-98257eca68ef
This commit is contained in:
(no author) 2014-12-21 18:53:52 +00:00
parent d8a02e5e73
commit fd3b671633

View file

@ -116,7 +116,7 @@ shared_ptr<SerializedMessage> ClientConnection::sendRequest(BaseMessage* message
if (++reqId == 100)
reqId = 1;
message->id = reqId;
cout << "Req: " << reqId << "\n";
//cout << "Req: " << reqId << "\n";
shared_ptr<PendingRequest> pendingRequest(new PendingRequest(reqId));
{
@ -130,7 +130,7 @@ cout << "Req: " << reqId << "\n";
{
response = pendingRequest->response;
timeouts = 0;
cout << "Resp: " << pendingRequest->id << "\n";
//cout << "Resp: " << pendingRequest->id << "\n";
}
else
{