1.0 KiB
1.0 KiB
Python Logging References
Use these official Python docs when applying this skill.
Core Documentation
!!! info "Core documentation" - Logging HOWTO - Logging Cookbook - logging API reference - logging.config reference
dictConfig-Specific
!!! info "dictConfig references"
- Dictionary schema details for version, formatters, handlers, loggers, and root.
- logging.config.dictConfig function reference.
Practical Notes
- Prefer app-level centralized config with one startup call to
dictConfig. - In modules, use
logging.getLogger(__name__). - Avoid calling
basicConfigin libraries or scattered modules.