Skip to content

Commit

Permalink
refactor: reduce logging verbosity (#494)
Browse files Browse the repository at this point in the history
  • Loading branch information
cjkindel committed Aug 8, 2022
1 parent dcb5ee4 commit 84a01ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/aws_encryption_sdk/streaming_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,10 +299,10 @@ def seek(self, offset, whence=0):

def readline(self):
"""Read a chunk of the output"""
_LOGGER.info("reading line")
_LOGGER.debug("reading line")
line = self.read(self.line_length)
if len(line) < self.line_length:
_LOGGER.info("all lines read")
_LOGGER.debug("all lines read")
return line

def readlines(self):
Expand Down

0 comments on commit 84a01ec

Please sign in to comment.