Skip to content

Commit

Permalink
0.9.2 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Adminiuga authored May 8, 2020
2 parents f4e68e9 + b8b9ff4 commit 4082eae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion zigpy_deconz/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# coding: utf-8
MAJOR_VERSION = 0
MINOR_VERSION = 9
PATCH_VERSION = "1"
PATCH_VERSION = "2"
__short_version__ = "{}.{}".format(MAJOR_VERSION, MINOR_VERSION)
__version__ = "{}.{}".format(__short_version__, PATCH_VERSION)
6 changes: 3 additions & 3 deletions zigpy_deconz/zigbee/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ async def mrequest(

r = await asyncio.wait_for(req.result, SEND_CONFIRM_TIMEOUT)
if r:
LOGGER.warning("Error while sending %s req id frame: %s", req_id, r)
LOGGER.debug("Error while sending %s req id frame: %s", req_id, r)
return r, "message send failure"

return Status.SUCCESS, "message send success"
Expand Down Expand Up @@ -196,7 +196,7 @@ async def request(
r = await asyncio.wait_for(req.result, SEND_CONFIRM_TIMEOUT)

if r:
LOGGER.warning("Error while sending %s req id frame: %s", req_id, r)
LOGGER.debug("Error while sending %s req id frame: %s", req_id, r)
return r, "message send failure"

return r, "message send success"
Expand Down Expand Up @@ -238,7 +238,7 @@ async def broadcast(
r = await asyncio.wait_for(req.result, SEND_CONFIRM_TIMEOUT)

if r:
LOGGER.warning("Error while sending %s req id broadcast: %s", req_id, r)
LOGGER.debug("Error while sending %s req id broadcast: %s", req_id, r)
return r, "broadcast send failure"
return r, "broadcast send success"

Expand Down

0 comments on commit 4082eae

Please sign in to comment.