mirror of
https://github.com/onyx-and-iris/xair-api-python.git
synced 2024-11-15 17:40:57 +00:00
fix logging bug
patch bump
This commit is contained in:
parent
981f4b57f8
commit
7015383b98
@ -1,6 +1,6 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "xair-api"
|
name = "xair-api"
|
||||||
version = "2.0.1"
|
version = "2.0.2"
|
||||||
description = "Remote control Behringer X-Air | Midas MR mixers through OSC"
|
description = "Remote control Behringer X-Air | Midas MR mixers through OSC"
|
||||||
authors = ["onyx-and-iris <code@onyxandiris.online>"]
|
authors = ["onyx-and-iris <code@onyxandiris.online>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
@ -97,7 +97,7 @@ class XAirRemote(abc.ABC):
|
|||||||
self._info_response = data[:]
|
self._info_response = data[:]
|
||||||
|
|
||||||
def send(self, addr: str, param: Optional[str] = None):
|
def send(self, addr: str, param: Optional[str] = None):
|
||||||
self.logger.debug(f"sending: {addr} {param if param else ''}")
|
self.logger.debug(f"sending: {addr} {param if param is not None else ''}")
|
||||||
self.server.send_message(addr, param)
|
self.server.send_message(addr, param)
|
||||||
time.sleep(self._WAIT_TIME)
|
time.sleep(self._WAIT_TIME)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user