(self)
| 30 | |
| 31 | class ModuleInActor2: |
| 32 | def __init__(self): |
| 33 | # module create in actor should automatically inherit the logger created by the root actor |
| 34 | self.logger = get_logger("module_in_actor2") |
| 35 | self.logger.info("ModuleInActor2 initialized") |
| 36 | self.logger.debug("ModuleInActor2 initialized") |
| 37 | |
| 38 | |
| 39 | @ray.remote |
nothing calls this directly
no test coverage detected