summaryrefslogtreecommitdiff
path: root/qpid/cpp
diff options
context:
space:
mode:
authorKim van der Riet <kpvdr@apache.org>2008-04-10 13:17:44 +0000
committerKim van der Riet <kpvdr@apache.org>2008-04-10 13:17:44 +0000
commit382a45a2cec001d55b1a5cced13a9a8e8c274d35 (patch)
treea0a0d5e2ef222b85391452c69391b11bed7b2a99 /qpid/cpp
parentea03198aaa43785f104991fb5b30b86dcb05a122 (diff)
downloadqpid-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.cpp2
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() {}