Skip to content

Commit

Permalink
Added debug logging on data received
Browse files Browse the repository at this point in the history
  • Loading branch information
Krolken committed Jan 17, 2019
1 parent 9eae4f1 commit 287f717
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions sos_access/client.py
Expand Up @@ -322,6 +322,7 @@ def _receive(self, transport, response_schema, timeout=10):
in_data = in_data + transport.receive().decode(self.ENCODING)
try:
response = response_schema.load(in_data)
logger.debug(f'Received SOS Access Data: {in_data}')
return response
except XMLParseError:
duration = time.time() - start_time
Expand Down

0 comments on commit 287f717

Please sign in to comment.