logging_config
get_logging_format()
¶
Get valid logging format from environment variable or default value.
Source code in src/fractal_task_tools/logging_config.py
23 24 25 26 27 28 29 30 31 | |
get_logging_level()
¶
Get valid logging level from environment variable or default value.
Source code in src/fractal_task_tools/logging_config.py
34 35 36 37 38 39 40 41 42 43 44 45 46 | |
setup_logging_config()
¶
Configure root logging handler.
Note that calling logging.basicConfig with force=True removes all
existing handlers of the root logger and creates a new handler.
Source code in src/fractal_task_tools/logging_config.py
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | |