diff options
author | Kim van der Riet <kpvdr@apache.org> | 2008-04-10 13:17:44 +0000 |
---|---|---|
committer | Kim van der Riet <kpvdr@apache.org> | 2008-04-10 13:17:44 +0000 |
commit | 382a45a2cec001d55b1a5cced13a9a8e8c274d35 (patch) | |
tree | a0a0d5e2ef222b85391452c69391b11bed7b2a99 /qpid/cpp | |
parent | ea03198aaa43785f104991fb5b30b86dcb05a122 (diff) | |
download | qpid-python-382a45a2cec001d55b1a5cced13a9a8e8c274d35.tar.gz |
Minor change to format of log message when exception is thrown
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@646791 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp')
-rw-r--r-- | qpid/cpp/src/qpid/Exception.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/Exception.cpp b/qpid/cpp/src/qpid/Exception.cpp index 1c3636e8c6..a69955c9dc 100644 --- a/qpid/cpp/src/qpid/Exception.cpp +++ b/qpid/cpp/src/qpid/Exception.cpp @@ -34,7 +34,7 @@ std::string strError(int err) { } Exception::Exception(const std::string& msg) throw() : message(msg) { - QPID_LOG(warning, "Exception: " << message); + QPID_LOG(debug, "Exception thrown: " << message); } Exception::~Exception() throw() {} |