Author: kpvdr
Date: Thu Apr 10 06:17:44 2008
New Revision: 646791
URL: http://svn.apache.org/viewvc?rev=646791&view=rev
Log:
Minor change to format of log message when exception is thrown
Modified:
incubator/qpid/trunk/qpid/cpp/src/qpid/Exception.cpp
Modified: incubator/qpid/trunk/qpid/cpp/src/qpid/Exception.cpp
URL:
http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/src/qpid/Exception.cpp?rev=646791&r1=646790&r2=646791&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/cpp/src/qpid/Exception.cpp (original)
+++ incubator/qpid/trunk/qpid/cpp/src/qpid/Exception.cpp Thu Apr 10 06:17:44
2008
@@ -34,7 +34,7 @@
}
Exception::Exception(const std::string& msg) throw() : message(msg) {
- QPID_LOG(warning, "Exception: " << message);
+ QPID_LOG(debug, "Exception thrown: " << message);
}
Exception::~Exception() throw() {}