Skip to content
This repository has been archived by the owner on Nov 1, 2022. It is now read-only.

Commit

Permalink
Remove print statement that prints all data to terminal
Browse files Browse the repository at this point in the history
  • Loading branch information
ijager committed Nov 21, 2019
1 parent 553ece5 commit 3f5ba0d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion app/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ def write_str(handle: LogHandle, line: str):
line: str
"""
if handle and handle.file and line is not None:
print('write to file:', line)
handle.file.write(line)

def write_csv(handle: LogHandle, data: typing.Iterable):
Expand Down

0 comments on commit 3f5ba0d

Please sign in to comment.