(self, msg: str, *, tag: str = "", raw: bool = False)
| 130 | self._log("info", msg, tag=tag, raw=raw) |
| 131 | |
| 132 | def warning(self, msg: str, *, tag: str = "", raw: bool = False) -> None: |
| 133 | self._log("warning", msg, tag=tag, raw=raw) |
| 134 | |
| 135 | def error(self, msg: str, *, tag: str = "", raw: bool = False) -> None: |
| 136 | self._log("error", msg, tag=tag, raw=raw) |
no test coverage detected