diff options
| author | Pavel Moravec <pmoravec@apache.org> | 2014-02-01 12:03:30 +0000 |
|---|---|---|
| committer | Pavel Moravec <pmoravec@apache.org> | 2014-02-01 12:03:30 +0000 |
| commit | ade50f17b8ffea099f8fffaaf283b2412f393bce (patch) | |
| tree | cff464e647246db8493a8bdf12ff5fb0e6c5fd20 /qpid/cpp/src | |
| parent | 3b036d9cef353c142c1cb0aec31cb8e8f96fa314 (diff) | |
| download | qpid-python-ade50f17b8ffea099f8fffaaf283b2412f393bce.tar.gz | |
QPID-5532: [C++ broker] Add debug log when timeouting DTX transaction
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1563403 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
| -rw-r--r-- | qpid/cpp/src/qpid/broker/DtxTimeout.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qpid/cpp/src/qpid/broker/DtxTimeout.cpp b/qpid/cpp/src/qpid/broker/DtxTimeout.cpp index 58700846ef..f317df5713 100644 --- a/qpid/cpp/src/qpid/broker/DtxTimeout.cpp +++ b/qpid/cpp/src/qpid/broker/DtxTimeout.cpp @@ -21,6 +21,7 @@ #include "qpid/broker/DtxTimeout.h" #include "qpid/broker/DtxManager.h" #include "qpid/sys/Time.h" +#include "qpid/log/Statement.h" using namespace qpid::broker; @@ -31,5 +32,6 @@ DtxTimeout::DtxTimeout(uint32_t _timeout, DtxManager& _mgr, const std::string& _ void DtxTimeout::fire() { + QPID_LOG(debug, "DTX transaction timeouted, XID=" << xid << ", timeout=" << timeout); mgr.timedout(xid); } |
