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.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/libs/ardour/debug.cc b/libs/ardour/debug.cc
index f6ea85f946..037007497d 100644
--- a/libs/ardour/debug.cc
+++ b/libs/ardour/debug.cc
@@ -88,6 +88,8 @@ ARDOUR::parse_debug_options (const char* str)
bits |= ARDOUR::DEBUG::Slave;
} else if (strncasecmp (p, "sessionevents", strlen (p)) == 0) {
bits |= ARDOUR::DEBUG::SessionEvents;
+ } else if (strncasecmp (p, "midiio", strlen (p)) == 0) {
+ bits |= ARDOUR::DEBUG::MidiIO;
}
p = strtok_r (0, ",", &sp);
@@ -115,4 +117,5 @@ ARDOUR::list_debug_options ()
cerr << "\tTransport" << endl;
cerr << "\tSlave" << endl;
cerr << "\tSessionEvents" << endl;
+ cerr << "\tMidiIO" << endl;
}