From: Paul Davis Date: Wed, 28 Sep 2016 16:27:17 +0000 (-0500) Subject: make error dump on stderr slightly more obvious X-Git-Tag: 5.4~38 X-Git-Url: https://main.carlh.net/gitweb/?p=ardour.git;a=commitdiff_plain;h=1f88b6d35fcbe9674c82fea26cb2260789f0ed14 make error dump on stderr slightly more obvious --- diff --git a/gtk2_ardour/ardour_ui.cc b/gtk2_ardour/ardour_ui.cc index fcbb5b4502..d5498a2fc6 100644 --- a/gtk2_ardour/ardour_ui.cc +++ b/gtk2_ardour/ardour_ui.cc @@ -3608,7 +3608,9 @@ ARDOUR_UI::build_session (const std::string& path, const std::string& snap_name, } catch (SessionException e) { + cerr << "Here are the errors associated with this failed session:\n"; dump_errors (cerr); + cerr << "---------\n"; MessageDialog msg (string_compose(_("Could not create session in \"%1\": %2"), path, e.what())); msg.set_title (_("Loading Error")); msg.set_position (Gtk::WIN_POS_CENTER); @@ -3617,7 +3619,9 @@ ARDOUR_UI::build_session (const std::string& path, const std::string& snap_name, return -1; } catch (...) { + cerr << "Here are the errors associated with this failed session:\n"; dump_errors (cerr); + cerr << "---------\n"; MessageDialog msg (string_compose(_("Could not create session in \"%1\""), path)); msg.set_title (_("Loading Error")); msg.set_position (Gtk::WIN_POS_CENTER);