summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2007-11-13 23:50:31 +0000
committerAlan Conway <aconway@apache.org>2007-11-13 23:50:31 +0000
commitcd58db3336afc4967f99ca4705fee3a94324f8cf (patch)
treeeed60ce9f4033f737737fc8e343398ab9b477614
parent5a8a258f5da1d08a012d9a6613258f198b2a3bf5 (diff)
downloadqpid-python-cd58db3336afc4967f99ca4705fee3a94324f8cf.tar.gz
qpid/client/SessionCore.cpp: Removed QPID_MSG outside log statement.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@594724 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/cpp/src/qpid/client/SessionCore.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/client/SessionCore.cpp b/qpid/cpp/src/qpid/client/SessionCore.cpp
index 14b9020282..653bcd93c1 100644
--- a/qpid/cpp/src/qpid/client/SessionCore.cpp
+++ b/qpid/cpp/src/qpid/client/SessionCore.cpp
@@ -308,7 +308,7 @@ void SessionCore::checkOpen() const {
cause=" by :"+text;
throw CommandInvalidException(QPID_MSG("Session is suspended" << cause));
}
- check(state==OPEN, COMMAND_INVALID, QPID_MSG("Session is not open"));
+ check(state==OPEN, COMMAND_INVALID, "Session is not open");
}
Future SessionCore::send(const AMQBody& command)