summaryrefslogtreecommitdiff
path: root/libs/ardour/debug.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2009-12-01 17:11:11 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2009-12-01 17:11:11 +0000
commit2ee9fb4d33452e0641ec18b08571447c6418c1a8 (patch)
tree9674a149ccc34c68aa7117343a8b72b0bebb17d0 /libs/ardour/debug.cc
parent194ee5d9ba7947dd7e8798ec6d5d562cb0318d48 (diff)
get non-JACK MIDI I/O working again, with debug tracing, naturally
git-svn-id: svn://localhost/ardour2/branches/3.0@6252 d708f5d6-7413-0410-9779-e7cbd77b26cf
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;
}