(cls: Type[Identified])
| 62 | |
| 63 | |
| 64 | def _qual_logger_name_for_cls(cls: Type[Identified]) -> str: |
| 65 | return ( |
| 66 | getattr(cls, "_sqla_logger_namespace", None) |
| 67 | or cls.__module__ + "." + cls.__name__ |
| 68 | ) |
| 69 | |
| 70 | |
| 71 | def class_logger(cls: Type[_IT]) -> Type[_IT]: |
no outgoing calls
no test coverage detected