Commit abe16a29 authored by Olivier Kaufmann's avatar Olivier Kaufmann
Browse files

Fixes double logger in test_mb_2024_1_mux

Showing with 1 addition and 1 deletion
+1 -1
......@@ -116,7 +116,7 @@ class MuxAbstract(ABC):
self.board_id = kwargs.pop('id', None)
if self.board_id is None:
self.exec_logger.error(f'MUX {self.model} should have an id !')
self.exec_logger.debug(f'MUX {self.board_id} ({self.model}) initialization')
self.exec_logger.debug(f'MUX {self.model}: {self.board_id} initialization')
self.connection = kwargs.pop('connection', None)
cabling = kwargs.pop('cabling', None)
self.cabling = {}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment