Skip to content

Commit

Permalink
Fix logger configuration in DiambraDevice class
Browse files Browse the repository at this point in the history
  • Loading branch information
mscrnt authored and alexpalms committed Mar 27, 2024
1 parent e83ce6d commit 3d05266
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion diambra/arena/utils/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def __init__(self, device, action_list=(("NoMove", "Left", "UpLeft", "Up", "UpRi
# thread init class (don't forget this)
Thread.__init__(self, daemon=True)
self.logger = logging.getLogger(__name__)
self.logger.basicConfig(logging_level)
self.logger.setLevel(logging_level)

self.stop_event = Event()

Expand Down

0 comments on commit 3d05266

Please sign in to comment.