There was an error while loading. Please reload this page.
1 parent 5e71c04 commit ad62e2aCopy full SHA for ad62e2a
1 file changed
app/api/src/osc/osc_handler.cpp
@@ -508,9 +508,17 @@ void OscHandler::oscMessage(std::vector<char> buffer)
508
LOG(ERR, "Unhandled OSC msg /link-bpm");
509
}
510
511
+ else if (msg->partialMatch("/n_").isOk()
512
+ || msg->partialMatch("/done").isOk()
513
+ || msg->partialMatch("/fail").isOk()
514
+ || msg->partialMatch("/synced").isOk())
515
+ {
516
+ // scsynth-protocol broadcasts that reach the GUI as a side
517
+ // effect of /notify subscription; Spider consumes these.
518
+ }
519
else
520
{
- LOG(ERR, "Unhandled OSC message: " << msg->addressPattern());
521
+ LOG(DBG, "Unhandled OSC message: " << msg->addressPattern());
522
523
524
std::cout << std::flush;
0 commit comments