Skip to content

Commit 79caa7b

Browse files
authored
Do not print out logging.DEBUG statements to stdout for test.py (#1240)
1 parent 9d73463 commit 79caa7b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,9 +197,9 @@ def main():
197197

198198
# set up logger
199199
root = logging.getLogger()
200-
root.setLevel(logging.DEBUG)
200+
root.setLevel(logging.INFO)
201201
ch = logging.StreamHandler(sys.stdout)
202-
ch.setLevel(logging.DEBUG)
202+
ch.setLevel(logging.INFO)
203203
formatter = logging.Formatter('======================================================================\n'
204204
'%(asctime)s - %(levelname)s - %(message)s')
205205
ch.setFormatter(formatter)

0 commit comments

Comments
 (0)