summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-01-15 01:29:44 +0100
committerRobin Gareus <robin@gareus.org>2016-01-15 01:29:44 +0100
commitb6c78ad9c80e33f450142d5e5c03caa7eba6d4af (patch)
tree692926c2032d29599f26b261faeaac06afdf17d6 /libs
parent6a6f414fc018a84ae53422397e4f50d80715f936 (diff)
fix OSC debug messages
Diffstat (limited to 'libs')
-rw-r--r--libs/surfaces/osc/osc.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/surfaces/osc/osc.cc b/libs/surfaces/osc/osc.cc
index 47ef9e13c2..35c437eeed 100644
--- a/libs/surfaces/osc/osc.cc
+++ b/libs/surfaces/osc/osc.cc
@@ -678,7 +678,7 @@ OSC::catchall (const char *path, const char* types, lo_arg **argv, int argc, lo_
ret = 0;
}
- if ((ret && _debugmode == Unhandled) || _debugmode == All) {
+ if ((ret && _debugmode == Unhandled)) {
debugmsg (_("Unhandled OSC message"), path, types, argv, argc);
}
@@ -736,7 +736,7 @@ OSC::debugmsg (const char *prefix, const char *path, const char* types, lo_arg *
ss << "<SYMBOL>";
break;
default:
- ss << "<??>";
+ ss << "< ?? >";
break;
}
}