From ee4d673da1e601ef12675fa014d80b76bc4c241b Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 6 Jan 2026 10:13:17 -0700 Subject: [PATCH] minor change in exception handling while testing issue on macOS --- libs/ardour/utils.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/ardour/utils.cc b/libs/ardour/utils.cc index d9523d3e54..9a3c96eaa8 100644 --- a/libs/ardour/utils.cc +++ b/libs/ardour/utils.cc @@ -687,7 +687,8 @@ ARDOUR::matching_unsuffixed_filename_exists_in (const string& dir, const string& } } } catch (const Glib::Error& e) { - error << string_compose (_("cannot open directory %1 (%2)"), dir, e.what()) << endl; + // error << string_compose (_("cannot open directory %1 (%2)"), dir, e.what()) << endl; + error << string_compose (_("cannot open directory %1 (some exception)"), dir) << endl; return false; }