From 09a9ee7d71ce46e1d83bc18698d9e8da3da6f450 Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Tue, 20 Nov 2007 17:18:42 +0000 Subject: Drop annoying session sequence log messages. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@596744 13f79535-47bb-0310-9956-ffa450edef68 --- qpid/cpp/src/qpid/framing/SessionState.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'qpid/cpp') diff --git a/qpid/cpp/src/qpid/framing/SessionState.cpp b/qpid/cpp/src/qpid/framing/SessionState.cpp index 8e5c9d34fc..52b71d0cf9 100644 --- a/qpid/cpp/src/qpid/framing/SessionState.cpp +++ b/qpid/cpp/src/qpid/framing/SessionState.cpp @@ -70,7 +70,6 @@ boost::optional SessionState::received(const AMQFrame& f) { QPID_MSG("Invalid frame: Resuming session, expected session-ack")); assert(state = ATTACHED); ++lastReceived; - QPID_LOG(trace, "Recv # "<< lastReceived << " " << id); if (ackInterval && lastReceived == sendAckAt) return sendingAck(); else @@ -85,7 +84,6 @@ bool SessionState::sent(const AMQFrame& f) { unackedOut.push_back(f); } ++lastSent; - QPID_LOG(trace, "Sent # "<< lastSent << " " << id); return ackInterval && (state!=RESUMING) && (lastSent == solicitAckAt) && -- cgit v1.2.1