From abe16a295170aa01bf68a38143d251861cffcb57 Mon Sep 17 00:00:00 2001
From: su530201 <olivier.kaufmann@umons.ac.be>
Date: Wed, 11 Oct 2023 20:41:33 +0200
Subject: [PATCH] Fixes double logger in test_mb_2024_1_mux

---
 ohmpi/hardware_components/abstract_hardware_components.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ohmpi/hardware_components/abstract_hardware_components.py b/ohmpi/hardware_components/abstract_hardware_components.py
index bb7d3ae8..22f2ea72 100644
--- a/ohmpi/hardware_components/abstract_hardware_components.py
+++ b/ohmpi/hardware_components/abstract_hardware_components.py
@@ -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 = {}
-- 
GitLab