Method
__init__
(self, module_inst: 'MgrModuleLoggingMixin')
Source from the content-addressed store, hash-verified
| 699 | |
| 700 | class MgrRootHandler(CPlusPlusHandler): |
| 701 | def __init__(self, module_inst: 'MgrModuleLoggingMixin') -> None: |
| 702 | super().__init__(module_inst) |
| 703 | self.setFormatter(logging.Formatter( |
| 704 | "[mgr %(levelname)-4s %(name)s] %(message)s" |
| 705 | )) |
| 706 | |
| 707 | def emit(self, record: logging.LogRecord) -> None: |
| 708 | record.name = "mgr" |
Callers
nothing calls this directly
Tested by
no test coverage detected