From 3e962da4bb350fd61a541e1458529ddafa0935d1 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 25 Mar 2020 10:30:40 -0600 Subject: [PATCH] improve debug flag setting message --- libs/pbd/debug.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/pbd/debug.cc b/libs/pbd/debug.cc index a1c933ab98..1104af4dea 100644 --- a/libs/pbd/debug.cc +++ b/libs/pbd/debug.cc @@ -132,7 +132,7 @@ PBD::parse_debug_options (const char* str) if (strncasecmp (cstr, i->first, strlen (cstr)) == 0) { bits |= i->second; - cout << i->first << " set\n"; + cout << string_compose (X_("Debug flag '%1' set\n"), i->first); } } }