diff --git a/ohmpi/hardware_components/mb_2023_0_X.py b/ohmpi/hardware_components/mb_2023_0_X.py
index 6e44cdc98baf075f914264e8173cc78e70fdef1b..7f4b94252366ccb5f3c67cb48f87c5c7c5a12a72 100644
--- a/ohmpi/hardware_components/mb_2023_0_X.py
+++ b/ohmpi/hardware_components/mb_2023_0_X.py
@@ -72,7 +72,7 @@ class Tx(TxAbstract):
             subclass_init = False
         else:
             subclass_init = True
-        print(f'mb_2023 kwargs: {kwargs}')
+        print(f'mb_2023 kwargs: {kwargs}, subclass_init : {subclass_init}')
         super().__init__(**kwargs)
         if not subclass_init:
             self.exec_logger.event(f'{self.model}\ttx_init\tbegin\t{datetime.datetime.utcnow()}')
diff --git a/ohmpi/hardware_components/mb_2024_0_2.py b/ohmpi/hardware_components/mb_2024_0_2.py
index 9cb0ce7dd4cceb08477a0c6779fec0f630b93df8..fb50c7fb4b48dc8c0335012521ccf5596f927029 100644
--- a/ohmpi/hardware_components/mb_2024_0_2.py
+++ b/ohmpi/hardware_components/mb_2024_0_2.py
@@ -72,7 +72,7 @@ class Tx(Tx_mb_2023):
             subclass_init = False
         else:
             subclass_init = True
-        print(f'mb_2024 kwargs: {kwargs}')
+        print(f'mb_2024 kwargs: {kwargs}, subclass_init : {subclass_init}')
         super().__init__(**kwargs)
         if not subclass_init:
             self.exec_logger.event(f'{self.model}\ttx_init\tbegin\t{datetime.datetime.utcnow()}')