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 | e583c70d5bb452cc13c6e76372a2b7b681498d8c (patch) | |
tree | e8cc5eefa13502ec2c32d9e17d757a50f10e2dfc /cpp/src/qpid/Exception.cpp | |
parent | e884ddfa94e3fdc69aa0054f75b0afd442aebb6f (diff) | |
download | qpid-python-e583c70d5bb452cc13c6e76372a2b7b681498d8c.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/qpid@646791 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/Exception.cpp')
-rw-r--r-- | cpp/src/qpid/Exception.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/Exception.cpp b/cpp/src/qpid/Exception.cpp index 1c3636e8c6..a69955c9dc 100644 --- a/cpp/src/qpid/Exception.cpp +++ b/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() {} |