diff options
author | Alan Conway <aconway@apache.org> | 2007-11-13 23:50:31 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2007-11-13 23:50:31 +0000 |
commit | 2195842076e65d340d58c2e7f4652135946a2dfc (patch) | |
tree | c6fa44bc2b9384eb9fb5c83484ca97d49462e1f3 /cpp/src | |
parent | 62c715d74189230c23c7e13f0bd71b89a18083ca (diff) | |
download | qpid-python-2195842076e65d340d58c2e7f4652135946a2dfc.tar.gz |
qpid/client/SessionCore.cpp: Removed QPID_MSG outside log statement.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@594724 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/qpid/client/SessionCore.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/client/SessionCore.cpp b/cpp/src/qpid/client/SessionCore.cpp index 14b9020282..653bcd93c1 100644 --- a/cpp/src/qpid/client/SessionCore.cpp +++ b/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) |