Commit 59801f5a authored by Olivier Kaufmann's avatar Olivier Kaufmann
Browse files

Tests event logging

Showing with 1 addition and 1 deletion
+1 -1
...@@ -206,7 +206,7 @@ class Rx(RxAbstract): ...@@ -206,7 +206,7 @@ class Rx(RxAbstract):
def __init__(self, **kwargs): def __init__(self, **kwargs):
kwargs.update({'board_name': os.path.basename(__file__).rstrip('.py')}) kwargs.update({'board_name': os.path.basename(__file__).rstrip('.py')})
super().__init__(**kwargs) super().__init__(**kwargs)
self.exec_logger.event(f'Init_RX\tbegin\t{datetime.datetime.utcnow()}') self.exec_logger.event(f'{self.board_name}\tInit\tbegin\t{datetime.datetime.utcnow()}')
if self.ctl is None: if self.ctl is None:
self.ctl = ctl_module.Ctl() self.ctl = ctl_module.Ctl()
# elif isinstance(self.ctl, dict): # elif isinstance(self.ctl, dict):
......
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