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 | 09a9ee7d71ce46e1d83bc18698d9e8da3da6f450 (patch) | |
| tree | fad0958f58ca96c66048b0a1d7eae421cdc0e186 /qpid/cpp/src | |
| parent | 5d7bf796007d1c412b74d38814257d1e587fafdc (diff) | |
| download | qpid-python-09a9ee7d71ce46e1d83bc18698d9e8da3da6f450.tar.gz | |
Drop annoying session sequence log messages.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@596744 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
| -rw-r--r-- | qpid/cpp/src/qpid/framing/SessionState.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
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<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) && |
