diff options
Diffstat (limited to 'cpp/src/qpid/framing/AMQContentBody.cpp')
-rw-r--r-- | cpp/src/qpid/framing/AMQContentBody.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cpp/src/qpid/framing/AMQContentBody.cpp b/cpp/src/qpid/framing/AMQContentBody.cpp index 13491589c4..59f3619ef2 100644 --- a/cpp/src/qpid/framing/AMQContentBody.cpp +++ b/cpp/src/qpid/framing/AMQContentBody.cpp @@ -40,7 +40,5 @@ void qpid::framing::AMQContentBody::decode(Buffer& buffer, uint32_t _size){ void qpid::framing::AMQContentBody::print(std::ostream& out) const { out << "content (" << size() << " bytes)"; -#ifndef NDEBUG - out << " " << data.substr(0,10) << "..."; -#endif + out << " " << data.substr(0,16) << "..."; } |