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 45f7e68434..48edc9a8d5 100644
--- a/libs/ardour/debug.cc
+++ b/libs/ardour/debug.cc
@@ -92,6 +92,8 @@ ARDOUR::parse_debug_options (const char* str)
bits |= ARDOUR::DEBUG::MidiIO;
} else if (strncasecmp (p, "midiclock", strlen (p)) == 0) {
bits |= ARDOUR::DEBUG::MidiClock;
+ } else if (strncasecmp (p, "properties", strlen (p)) == 0) {
+ bits |= ARDOUR::DEBUG::Properties;
}
p = strtok_r (0, ",", &sp);
@@ -122,4 +124,5 @@ ARDOUR::list_debug_options ()
cerr << "\tMidiIO" << endl;
cerr << "\tLatencyCompensation" << endl;
cerr << "\tMidiClock" << endl;
+ cerr << "\tProperties" << endl;
}