(self, msg: str, *, tag: str = "", raw: bool = False)
| 127 | logger.add(sys.stderr) |
| 128 | |
| 129 | def info(self, msg: str, *, tag: str = "", raw: bool = False) -> None: |
| 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) |