logging.configure_logging

logging.configure_logging(level=logging.WARNING)

Configure logging for the entire application.

Parameters

Name Type Description Default
level int The logging level to use. Defaults to WARNING. Can be overridden by environment variable CAML_LOG_LEVEL. logging.WARNING
Back to top