summaryrefslogtreecommitdiff
path: root/libs/ardour/debug.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/debug.cc')
-rw-r--r--libs/ardour/debug.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/libs/ardour/debug.cc b/libs/ardour/debug.cc
index 0e9b7d8182..4677f696ae 100644
--- a/libs/ardour/debug.cc
+++ b/libs/ardour/debug.cc
@@ -84,6 +84,10 @@ ARDOUR::parse_debug_options (const char* str)
bits |= ARDOUR::DEBUG::MTC;
} else if (strncasecmp (p, "transport", strlen (p)) == 0) {
bits |= ARDOUR::DEBUG::Transport;
+ } else if (strncasecmp (p, "slave", strlen (p)) == 0) {
+ bits |= ARDOUR::DEBUG::Transport;
+ } else if (strncasecmp (p, "sessionevents", strlen (p)) == 0) {
+ bits |= ARDOUR::DEBUG::SessionEvents;
}
p = strtok_r (0, ",", &sp);
@@ -109,4 +113,6 @@ ARDOUR::list_debug_options ()
cerr << "\tDestruction" << endl;
cerr << "\tMTC" << endl;
cerr << "\tTransport" << endl;
+ cerr << "\tSlave" << endl;
+ cerr << "\tSessionEvents" << endl;
}