summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2008-07-02 11:11:50 +0000
committerGordon Sim <gsim@apache.org>2008-07-02 11:11:50 +0000
commitab897a9ad401c7781b32d715da01b56783ac2ca6 (patch)
treed9bd90adc970d952814dca853dbbbe55eb130d66 /cpp/src
parent44f6ee2dfd7ba9f3a3379de4ea59996b7a68d498 (diff)
downloadqpid-python-ab897a9ad401c7781b32d715da01b56783ac2ca6.tar.gz
Improved text and rasied severity of log entry when client sessions are deleted without first being closed.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@673359 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/qpid/client/SessionImpl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/client/SessionImpl.cpp b/cpp/src/qpid/client/SessionImpl.cpp
index 574c71ecd7..43ae158afe 100644
--- a/cpp/src/qpid/client/SessionImpl.cpp
+++ b/cpp/src/qpid/client/SessionImpl.cpp
@@ -72,7 +72,7 @@ SessionImpl::~SessionImpl() {
{
Lock l(state);
if (state != DETACHED) {
- QPID_LOG(warning, "Detaching deleted session");
+ QPID_LOG(error, "Session was not closed cleanly");
setState(DETACHED);
handleClosed();
state.waitWaiters();