(self, message: str, *args: _t.Any, **kwargs: _t.Any)
| 22 | self._indent_width = self._initial_indent_width = indent_width |
| 23 | |
| 24 | def log(self, message: str, *args: _t.Any, **kwargs: _t.Any) -> None: |
| 25 | kwargs.setdefault("err", True) |
| 26 | prefix = " " * self.current_indent |
| 27 | click.secho(prefix + message, *args, **kwargs) |
| 28 | |
| 29 | def debug(self, message: str, *args: _t.Any, **kwargs: _t.Any) -> None: |
| 30 | if self.verbosity >= 1: |
no outgoing calls