Skip to content

Commit

Permalink
[#167][FIX] set default level to DEBUG instead of warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Ektoplasma committed Feb 2, 2023
1 parent 4d260b8 commit b126b0a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions iris_interface/IrisModuleInterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ def __init__(self):

rand = ''.join(choice(string.ascii_lowercase) for _ in range(8))
self.log = logging.getLogger(f"{__name__}_{rand}")
self.log.setLevel(logging.DEBUG)
self.message_queue = []
self.set_log_handler()

Expand Down

0 comments on commit b126b0a

Please sign in to comment.