diff --git a/hardware_components/abstract_hardware_components.py b/hardware_components/abstract_hardware_components.py index c92ce3064329e357ce117ce71b5f83a21cd71ed5..4a1b1350ddff75e17ba20e0fad3798748ee9bdea 100644 --- a/hardware_components/abstract_hardware_components.py +++ b/hardware_components/abstract_hardware_components.py @@ -116,8 +116,8 @@ class MuxAbstract(ABC): if (elec, role) in self.cabling.keys(): self.switch_one(elec, role, state) else: - self.exec_logger.debug(f'{self.board_id} skipping switching {(elec, role)} because it is' - f'is not in board cabling') + self.exec_logger.debug(f'{self.board_id} skipping switching {(elec, role)} because it' + f'is not in board cabling {self.cabling}') self.exec_logger.debug(f'{self.board_id} switching done.') else: self.exec_logger.warning(f'Missing argument for {self.board_name}.switch: elec_dict is None.')