summaryrefslogtreecommitdiff
path: root/libs/surfaces
diff options
context:
space:
mode:
authorLen Ovens <len@ovenwerks.net>2016-10-23 19:00:20 -0700
committerLen Ovens <len@ovenwerks.net>2016-10-23 19:00:20 -0700
commit5743013ae426b43332cfdf0ff4e6961b7fc78219 (patch)
treef3bb5b7fc0464f44bff3224a314ddc9a2cc6f926 /libs/surfaces
parentdd015e09a7265e2b274c58ead9c63cfe55ed1a2c (diff)
OSC fix debug logic for catchall messages
Diffstat (limited to 'libs/surfaces')
-rw-r--r--libs/surfaces/osc/osc.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/surfaces/osc/osc.cc b/libs/surfaces/osc/osc.cc
index 9d09c97d8d..f5f48edcb9 100644
--- a/libs/surfaces/osc/osc.cc
+++ b/libs/surfaces/osc/osc.cc
@@ -987,7 +987,7 @@ OSC::catchall (const char *path, const char* types, lo_arg **argv, int argc, lo_
if ((ret && _debugmode == Unhandled)) {
debugmsg (_("Unhandled OSC message"), path, types, argv, argc);
- } else if ((!ret && _debugmode != Unhandled)) {
+ } else if ((!ret && _debugmode == All)) {
debugmsg (_("OSC"), path, types, argv, argc);
}