Skip to content

Commit

Permalink
remove exception info form log message
Browse files Browse the repository at this point in the history
  • Loading branch information
sbidy committed May 3, 2020
1 parent d3df464 commit d164c3b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pywizlight/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""PyPi Version"""

__version__ = '0.3.1'
__version__ = '0.3.2'
2 changes: 1 addition & 1 deletion pywizlight/bulb.py
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ async def sendUDPMessage(self, message, timeout = 60, send_interval = 0.5, max_s
data = receive_task.result()

except asyncio.TimeoutError:
_LOGGER.exception("[wizlight {}, connid {}] Failed to do UDP call(s) to wiz light".format(self.ip, connid))
_LOGGER.exception("[wizlight {}, connid {}] Failed to do UDP call(s) to wiz light".format(self.ip, connid), exc_info=False)
finally:
stream.close()

Expand Down

0 comments on commit d164c3b

Please sign in to comment.