Skip to content

Commit

Permalink
[scr] Do not print debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
chleh committed Aug 6, 2024
1 parent 4448a2c commit 20b7299
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Applications/Python/ogs/dev/ogs_log_summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,9 +314,9 @@ def run(log_files_dirs, xml_out_dir, verbose):
if snippet_out is not None:
assert snippet_out.is_dir()

logger.setLevel(logging.DEBUG)
logger.setLevel(logging.INFO)
ch = logging.StreamHandler()
ch.setLevel(logging.DEBUG)
ch.setLevel(logging.INFO)
formatter = logging.Formatter("[%(levelname)s] %(message)s")
ch.setFormatter(formatter)
logger.addHandler(ch)
Expand Down

0 comments on commit 20b7299

Please sign in to comment.