Skip to content

Commit

Permalink
fix debug logging wrong order
Browse files Browse the repository at this point in the history
  • Loading branch information
starkillerOG committed Feb 27, 2025
1 parent 20fcb8f commit 513bbe5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reolink_aio/baichuan/baichuan.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ async def send(
if len(rec_body) > 0:
_LOGGER.debug("Baichuan host %s: received cmd_id %s%s:\n%s", self._host, cmd_id, ch_str, self._hide_password(rec_body))
else:
_LOGGER.debug("Baichuan host %s: received cmd_id %s%s status 200:OK without body", cmd_id, ch_str, self._host)
_LOGGER.debug("Baichuan host %s: received cmd_id %s%s status 200:OK without body", self._host, cmd_id, ch_str)

return rec_body

Expand Down

0 comments on commit 513bbe5

Please sign in to comment.