diff options
author | Alan Conway <aconway@apache.org> | 2009-01-27 14:58:47 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2009-01-27 14:58:47 +0000 |
commit | 5bec09eaeba0bfbe55d2649ba50801f3faae5642 (patch) | |
tree | 07cc1cfdc8e327669169bac7ea915e8e50a19b7c /cpp/src/qpid/cluster/Cluster.cpp | |
parent | d849eff61801f3c5d5bdda74007c886a34f7a10b (diff) | |
download | qpid-python-5bec09eaeba0bfbe55d2649ba50801f3faae5642.tar.gz |
cluster/EventFrame.cpp: Add operator<< for EventFrame
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@738107 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/cluster/Cluster.cpp')
-rw-r--r-- | cpp/src/qpid/cluster/Cluster.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/cluster/Cluster.cpp b/cpp/src/qpid/cluster/Cluster.cpp index 0d082fc226..2939b0c203 100644 --- a/cpp/src/qpid/cluster/Cluster.cpp +++ b/cpp/src/qpid/cluster/Cluster.cpp @@ -234,12 +234,12 @@ void Cluster::deliveredEvent(const Event& e) { } void Cluster::deliveredFrame(const EventFrame& e) { + QPID_LOG(trace, *this << " DLVR: " << e); QPID_LATENCY_RECORD("delivered frame queue", e.frame); - if (e.connection) { + if (e.connection) { e.connection->deliveredFrame(e); } else { - QPID_LOG(trace, *this << " DLVR: " << e.frame); Mutex::ScopedLock l(lock); // FIXME aconway 2008-12-11: lock scope too big? ClusterDispatcher dispatch(*this, e.member, l); if (!framing::invoke(dispatch, *e.frame.getBody()).wasHandled()) |