Verbosity
pysat
uses Python’s standard
logging tools
to control the verbosity of output. By default only logger.warning messages
are shown. For more detailed output you may change the logging level.
import logging
import pysat
pysat.logger.set_level(logging.INFO)
The logging level will be applied to all Instrument
data
loaded by pysat
and to analysis tools run by the pysat penumbra
packages. If you try to update the logger level after doing anything with
pysat
in an interactive session, it may not work.