Skip to content

Commit

Permalink
Remove redundant setLevel for console_handler in logging
Browse files Browse the repository at this point in the history
Bugfix commit a2c68e1
  • Loading branch information
LegenJCdary committed May 19, 2022
1 parent b905dbb commit 8fd5aa1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion source/modules/outputs/logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ def set_logging(options: dict):

console_handler = logging.StreamHandler()
console_handler.setFormatter(console_formatter)
console_handler.setLevel(logging.INFO)
console_handler.setLevel(logging.DEBUG if options["debug"] else logging.INFO)
logger.addHandler(console_handler)

Expand Down

0 comments on commit 8fd5aa1

Please sign in to comment.