Browse Source

standardized error message

master
Nils 5 years ago
parent
commit
f14a058710
  1. 4
      engine/nsmservercontrol.py

4
engine/nsmservercontrol.py

@ -573,8 +573,8 @@ class NsmServerControl(object):
if msg.oscpath == "/nsm/gui/session/root":
sessionRoot = msg.params[0]
ready = True
else:
logger.warning(f"Waiting for session root from nsmd but got: {msg.oscpath} {msg.params}")
else:
logger.error(f"Waiting for session root from nsmd, but got: {msg.oscpath} with {msg.params}. Adding to queue for later. If the server got started anyway and is reacting to your commands, it is fine for now.")
self._queue.append(msg)
except BlockingIOError: #happens while no data is received. Has nothing to do with blocking or not.

Loading…
Cancel
Save