diff --git a/ohmpi/hardware_components/mux_2023_0_X.py b/ohmpi/hardware_components/mux_2023_0_X.py
index 786ad6e72c9b1f07ebfdd845555cd7ff27450a19..df4bd14d4770ef98f85c8406ef917a297dbb3a45 100644
--- a/ohmpi/hardware_components/mux_2023_0_X.py
+++ b/ohmpi/hardware_components/mux_2023_0_X.py
@@ -86,7 +86,6 @@ class Mux(MuxAbstract):
             self.exec_logger.error(f'Invalid role assignment for {self.model}: {self._roles} !')
             self._mode = ''
         cabling = kwargs.pop('cabling', None)
-        print('cabling',cabling)
         electrodes = kwargs.pop('electrodes', None)
         self.cabling = {}
         if cabling is None:
diff --git a/ohmpi/hardware_components/mux_2024_0_X.py b/ohmpi/hardware_components/mux_2024_0_X.py
index 7e7221262318201a788caa96e38cf542d08033dc..704e0a9cdaabf966a4f5c4c9e555f325b088633c 100644
--- a/ohmpi/hardware_components/mux_2024_0_X.py
+++ b/ohmpi/hardware_components/mux_2024_0_X.py
@@ -83,7 +83,6 @@ class Mux(MuxAbstract):
             self.exec_logger.error(f'Invalid role assignment for {self.model}: {self._roles} !')
             self._mode = ''
         cabling = kwargs.pop('cabling', None)
-        print('cabling', cabling)
         electrodes = kwargs.pop('electrodes', None)
         self.cabling = {}
         if cabling is None:
diff --git a/ohmpi/hardware_system.py b/ohmpi/hardware_system.py
index 5b5c418eb9133a9d4fd87d53590a9143fd7ea081..080fbd4c2a5e2fea8db01ca1d0ddf43eed691a8e 100644
--- a/ohmpi/hardware_system.py
+++ b/ohmpi/hardware_system.py
@@ -157,7 +157,6 @@ class OhmPiHardware:
             mux_config['id'] = mux_id
 
             self.mux_boards[mux_id] = mux_module.Mux(**mux_config)
-            print(self.mux_boards[mux_id].cabling)
 
         self.mux_barrier = Barrier(len(self.mux_boards) + 1)
         self._cabling = {}
@@ -165,7 +164,6 @@ class OhmPiHardware:
             mux.barrier = self.mux_barrier
             for k, v in mux.cabling.items():
                 update_dict(self._cabling, {k: (mux_id, k[0])})   #TODO: in theory k[0] is not needed in values
-        print(self._cabling)
         # Complete OhmPiHardware initialization
         self.readings = np.array([])  # time series of acquired data
         self._start_time = None  # time of the beginning of a readings acquisition
diff --git a/ohmpi/utils.py b/ohmpi/utils.py
index 653d112d510474107f63d31a83f3be7946e2861c..7599b78bfcfb54cda4799613ce605ba11c798423 100644
--- a/ohmpi/utils.py
+++ b/ohmpi/utils.py
@@ -135,6 +135,7 @@ def mux_2024_to_mux_2023_takeouts(mux_boards):
 
     for mux in mux_boards:
         new_cabling = mux.cabling.copy()
+        print(mux)
         for k, v in mux.cabling.items():
             print(k, v)
             new_cabling[k] = (mapper[v[0]], v[1])