pyPLUTO.set_text#

pyPLUTO.utils.configure.set_text(text: bool | None) None[source]#

Set the verbosity of pyPLUTO logging.

Parameters:
- text: bool | None

None (default) enables standard INFO messages. False silences all output (WARNING level). True enables full debug output (DEBUG level).

Returns:
  • None

Examples

  • Example #1: Silence all output

    >>> set_text(False)
    
  • Example #2: Default INFO output

    >>> set_text(None)
    
  • Example #3: Full debug output

    >>> set_text(True)