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/Event.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/Event.cpp')
-rw-r--r-- | cpp/src/qpid/cluster/Event.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/cluster/Event.cpp b/cpp/src/qpid/cluster/Event.cpp index 339c1de1dd..e30b961b3e 100644 --- a/cpp/src/qpid/cluster/Event.cpp +++ b/cpp/src/qpid/cluster/Event.cpp @@ -111,7 +111,7 @@ Event::operator Buffer() const { static const char* EVENT_TYPE_NAMES[] = { "data", "control" }; std::ostream& operator << (std::ostream& o, const EventHeader& e) { - o << "[event " << e.getConnectionId() + o << "[event " << e.getConnectionId() << "/" << e.getSequence() << " " << EVENT_TYPE_NAMES[e.getType()] << " " << e.getSize() << " bytes]"; return o; |