Spaces:
Sleeping
Sleeping
| from abc import ABC, abstractmethod | |
| class Logger(ABC): | |
| def info(self, msg: str, **kwargs): | |
| pass | |
| def debug(self, msg: str, **kwargs): | |
| pass | |
| def error(self, msg: str, **kwargs): | |
| pass | |
| def warn(self, msg: str, **kwargs): | |
| pass | |
| def exception(self, msg: str, **kwargs): | |
| pass | |