summaryrefslogtreecommitdiff
path: root/qpid/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
commita5c4ce5021bfc076d48818757d5fe961b98e4bf2 (patch)
treed041b53906d3c9c981ee3e64d840e54b7c40ff37 /qpid/cpp/src
parent0750553ff5d011165ad897b0fbca1083981dd109 (diff)
downloadqpid-python-a5c4ce5021bfc076d48818757d5fe961b98e4bf2.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@673359 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
-rw-r--r--qpid/cpp/src/qpid/client/SessionImpl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/client/SessionImpl.cpp b/qpid/cpp/src/qpid/client/SessionImpl.cpp
index 574c71ecd7..43ae158afe 100644
--- a/qpid/cpp/src/qpid/client/SessionImpl.cpp
+++ b/qpid/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();