MCPcopy
hub / github.com/jazzband/pip-tools / log

Method log

piptools/logging.py:24–27  ·  view source on GitHub ↗
(self, message: str, *args: _t.Any, **kwargs: _t.Any)

Source from the content-addressed store, hash-verified

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:

Callers 6

debugMethod · 0.95
infoMethod · 0.95
warningMethod · 0.95
errorMethod · 0.95
test_indentationFunction · 0.95
writeMethod · 0.80

Calls

no outgoing calls

Tested by 1

test_indentationFunction · 0.76