13
0

OSC debug: "ALL" == all messages incl. invalid ones

This commit is contained in:
Robin Gareus 2017-03-13 22:35:07 +01:00
parent ac46fb2700
commit 248521221c

View File

@ -1009,9 +1009,9 @@ OSC::catchall (const char *path, const char* types, lo_arg **argv, int argc, lo_
ret = 0; ret = 0;
} }
if ((ret && _debugmode == Unhandled)) { if ((ret && _debugmode != Off)) {
debugmsg (_("Unhandled OSC message"), path, types, argv, argc); debugmsg (_("Unhandled OSC message"), path, types, argv, argc);
} else if ((!ret && _debugmode == All)) { } else if (!ret && _debugmode == All) {
debugmsg (_("OSC"), path, types, argv, argc); debugmsg (_("OSC"), path, types, argv, argc);
} }