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 | a5317cb7a45ced614263ac937487ed221a43baee (patch) | |
| tree | 52be90ff9db303ee9fcecbdb602ebc9a16a8461b /cpp | |
| parent | b2bc17c032a654a6a1a217c08fec17587f671a2e (diff) | |
| download | qpid-python-a5317cb7a45ced614263ac937487ed221a43baee.tar.gz | |
QPID-5532: [C++ broker] Add debug log when timeouting DTX transaction
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1563403 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
| -rw-r--r-- | cpp/src/qpid/broker/DtxTimeout.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/src/qpid/broker/DtxTimeout.cpp b/cpp/src/qpid/broker/DtxTimeout.cpp index 58700846ef..f317df5713 100644 --- a/cpp/src/qpid/broker/DtxTimeout.cpp +++ b/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); } |
