From d1ef7b0d76bbc2b3fe7f431cb5fefdf241c45234 Mon Sep 17 00:00:00 2001 From: Brad Chase Date: Wed, 20 Dec 2017 13:24:14 -0500 Subject: [PATCH] [FOLD] Print exception message --- src/ripple/app/main/Application.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/ripple/app/main/Application.cpp b/src/ripple/app/main/Application.cpp index 6f726a2fc7f..65525954f6d 100644 --- a/src/ripple/app/main/Application.cpp +++ b/src/ripple/app/main/Application.cpp @@ -1234,9 +1234,10 @@ bool ApplicationImp::setup() setup.makeContexts(); serverHandler_->setup(setup, m_journal); } - catch (std::exception const&) + catch (std::exception const& e) { - JLOG(m_journal.fatal()) << "Unable to setup server handler"; + JLOG(m_journal.fatal()) + << "Unable to setup server handler " << e.what(); return false; } }