Set runtime arguments for the logger. runtime_args: dict of runtime arguments.
(self, runtime_args)
| 28 | |
| 29 | @abc.abstractmethod |
| 30 | def set_runtime_args(self, runtime_args): |
| 31 | """ |
| 32 | Set runtime arguments for the logger. |
| 33 | runtime_args: dict of runtime arguments. |
| 34 | """ |
| 35 | raise NotImplementedError( |
| 36 | 'Must define set_runtime_args function to use this base class' |
| 37 | ) |
| 38 | |
| 39 | @abc.abstractmethod |
| 40 | def log(self, log_dict): |