summaryrefslogtreecommitdiff
path: root/gtk2_ardour/opts.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2009-10-24 13:51:33 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2009-10-24 13:51:33 +0000
commit0ac99a4236bf3b499870e196c5cfc040f37aac22 (patch)
treecb42e5cab941fedf53f328a1e65825f699f1a8bf /gtk2_ardour/opts.cc
parentf8fe64a91e7ae7f6ac761e8ae16a485ed70fb994 (diff)
debug-tracify current MIDI playlist debug output
git-svn-id: svn://localhost/ardour2/branches/3.0@5904 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/opts.cc')
-rw-r--r--gtk2_ardour/opts.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/gtk2_ardour/opts.cc b/gtk2_ardour/opts.cc
index 917d2a49d7..d3380ffb8f 100644
--- a/gtk2_ardour/opts.cc
+++ b/gtk2_ardour/opts.cc
@@ -79,6 +79,7 @@ list_debug_options ()
{
cerr << _("The following debug options are available. Their use is case-insensitive.\n\n");
cerr << "\tMidiSourceIO\n";
+ cerr << "\tMidiPlaylistIO\n";
}
static int
@@ -101,6 +102,9 @@ parse_debug_options (const char* str)
if (strcasecmp (p, "midisourceio") == 0) {
bits |= ARDOUR::DEBUG::MidiSourceIO;
}
+ if (strcasecmp (p, "midiplaylistio") == 0) {
+ bits |= ARDOUR::DEBUG::MidiPlaylistIO;
+ }
p = strtok_r (0, ",", &sp);
}