summaryrefslogtreecommitdiff
path: root/libs/pbd
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2019-12-14 10:39:47 -0700
committerPaul Davis <paul@linuxaudiosystems.com>2019-12-14 10:40:07 -0700
commit514c05a44edca946d07f6c9028b36698a049a3d7 (patch)
treefbb41d7e3e5f164b3d45065ff1b4923cda90dbf6 /libs/pbd
parentd574b6ff364b5c17ac59a7ff92ef450b3e6fe4fa (diff)
truncate unnecessarily verbose debug set/bits output
Diffstat (limited to 'libs/pbd')
-rw-r--r--libs/pbd/debug.cc2
1 files changed, 1 insertions, 1 deletions
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";
}
}
}