Skip to content

Commit 84a01ec

Browse files
authored
refactor: reduce logging verbosity (aws#494)
1 parent dcb5ee4 commit 84a01ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/aws_encryption_sdk/streaming_client.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -299,10 +299,10 @@ def seek(self, offset, whence=0):
299299

300300
def readline(self):
301301
"""Read a chunk of the output"""
302-
_LOGGER.info("reading line")
302+
_LOGGER.debug("reading line")
303303
line = self.read(self.line_length)
304304
if len(line) < self.line_length:
305-
_LOGGER.info("all lines read")
305+
_LOGGER.debug("all lines read")
306306
return line
307307

308308
def readlines(self):

0 commit comments

Comments
 (0)