diff options
author | Gordon Sim <gsim@apache.org> | 2007-01-16 12:00:22 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2007-01-16 12:00:22 +0000 |
commit | 8481cf3fd85c90e0bd465480b27509c273dee056 (patch) | |
tree | 57b3e0efe813f1f026bc2d64f6615ff87eebf5a6 /cpp/lib/common/framing/Value.cpp | |
parent | d1758038d6d52b30d588ffd4f2764ad54e9a5029 (diff) | |
download | qpid-python-8481cf3fd85c90e0bd465480b27509c273dee056.tar.gz |
Some basic additional error logging of framing errors.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@496665 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/lib/common/framing/Value.cpp')
-rw-r--r-- | cpp/lib/common/framing/Value.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp/lib/common/framing/Value.cpp b/cpp/lib/common/framing/Value.cpp index fc087043e5..d193286636 100644 --- a/cpp/lib/common/framing/Value.cpp +++ b/cpp/lib/common/framing/Value.cpp @@ -22,6 +22,7 @@ #include <Buffer.h> #include <FieldTable.h> #include <QpidError.h> +#include <sstream> namespace qpid { namespace framing { @@ -85,7 +86,9 @@ std::auto_ptr<Value> Value::decode_value(Buffer& buffer) value.reset(new FieldTableValue()); break; default: - THROW_QPID_ERROR(FRAMING_ERROR, "Unknown field table value type"); + std::stringstream out; + out << "Unknown field table value type: " << type; + THROW_QPID_ERROR(FRAMING_ERROR, out.str()); } value->decode(buffer); return value; |