diff options
author | Alan Conway <aconway@apache.org> | 2007-11-20 17:18:42 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2007-11-20 17:18:42 +0000 |
commit | 2f83216b9948be6a65b04f8bf749f60a818634c4 (patch) | |
tree | 13dfef1d5c5472d862a4f755108c704e40a8ac19 /cpp | |
parent | d7a0b275db74b4c1d3b5d054a4d221e026cf77b0 (diff) | |
download | qpid-python-2f83216b9948be6a65b04f8bf749f60a818634c4.tar.gz |
Drop annoying session sequence log messages.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@596744 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/src/qpid/framing/SessionState.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/cpp/src/qpid/framing/SessionState.cpp b/cpp/src/qpid/framing/SessionState.cpp index 8e5c9d34fc..52b71d0cf9 100644 --- a/cpp/src/qpid/framing/SessionState.cpp +++ b/cpp/src/qpid/framing/SessionState.cpp @@ -70,7 +70,6 @@ boost::optional<SequenceNumber> 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) && |