From 514c05a44edca946d07f6c9028b36698a049a3d7 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 14 Dec 2019 10:39:47 -0700 Subject: [PATCH] truncate unnecessarily verbose debug set/bits output --- 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 a6ff1dda56..a1c933ab98 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 ... debug bits now set to " << bits << " using " << i->second << endl; + cout << i->first << " set\n"; } } } -- 2.30.2