Skip to content

Commit

Permalink
osgar/drivers/pcan.py - change log level from debug to info (#982)
Browse files Browse the repository at this point in the history
  • Loading branch information
m3d authored Mar 11, 2024
1 parent bbbd2de commit 8cee8fa
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions osgar/drivers/pcan.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ def __init__(self, config, bus):
self.bus = bus
bus.register('can')
self.canbus = can.interface.Bus(bustype='pcan', channel='PCAN_USBBUS1', bitrate=500000)
can.util.set_logging_level(config.get('logging_level', 'info'))
self.input_thread = Thread(target=self.run_input, daemon=True)
self.output_thread = Thread(target=self.run_output, daemon=True)

Expand Down

0 comments on commit 8cee8fa

Please sign in to comment.