(self, message: str, *args: _t.Any, **kwargs: _t.Any)
| 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: |
| 31 | self.log(message, *args, **kwargs) |
| 32 | |
| 33 | def info(self, message: str, *args: _t.Any, **kwargs: _t.Any) -> None: |
| 34 | if self.verbosity >= 0: |
no test coverage detected