Skip to content

Commit

Permalink
Demote hex dump of ADU to debug log (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
rgov committed Jul 27, 2020
1 parent 0faaf90 commit f3b438d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions umodbus/server/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,6 @@ def respond(self, response_adu):
:param response_adu: A bytearray containing the response of an ADU.
"""
log.info('--> {0} - {1}.'.format(self.client_address[0],
hexlify(response_adu)))
log.debug('--> {0} - {1}.'.format(self.client_address[0],
hexlify(response_adu)))
self.request.sendall(response_adu)

0 comments on commit f3b438d

Please sign in to comment.