diff options
author | Alan Conway <aconway@apache.org> | 2008-11-19 15:36:16 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2008-11-19 15:36:16 +0000 |
commit | e1cc77fda58a22b4d74e19688c0247ce1735ee39 (patch) | |
tree | e51e43dc2d1b7d2ea88a1c0fd8eea0baee7576f6 /cpp/src/qpidd.cpp | |
parent | 27de47471df6ceb5dadd1d24cc00166056c9dbe4 (diff) | |
download | qpid-python-e1cc77fda58a22b4d74e19688c0247ce1735ee39.tar.gz |
Fix seg fault caused by exceptiosn thrown in Cluster ctor.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@718983 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpidd.cpp')
-rw-r--r-- | cpp/src/qpidd.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/qpidd.cpp b/cpp/src/qpidd.cpp index b00a3e63f6..330f12ae83 100644 --- a/cpp/src/qpidd.cpp +++ b/cpp/src/qpidd.cpp @@ -23,6 +23,7 @@ #include "qpid/Plugin.h" #include "qpid/Version.h" #include "qpid/log/Logger.h" +#include "qpid/log/Statement.h" #include "qpid/sys/Shlib.h" #include <iostream> @@ -76,7 +77,7 @@ int main(int argc, char* argv[]) return broker.execute(options.get()); } catch(const exception& e) { - cerr << e.what() << endl; + QPID_LOG(critical, "Broker start-up failed: " << e.what()); } return 1; } |