print_stdout

print_stdout(text: str, *arg) → None

Render a message to standard out.

When Config.print_stdout() is called with additional args those arguments will formatted against the provided text, otherwise we simply output the provided text verbatim.

e.g.:

>>> config.print_stdout('Some text %s', 'arg')
Some Text arg