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
21 22 23 24 25 26 27 28 29 | |
get_logging_level()
¶
Get valid logging level from environment variable or default value.
Source code in src/fractal_task_tools/logging_config.py
32 33 34 35 36 37 38 39 40 41 42 43 44 | |
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
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | |