Files
prompts/docs/skills/python-logging-dictconfig/references/python-logging-docs.md
T
John Lancaster e78383be1f move
2026-06-18 22:06:40 -05:00

912 B

Python Logging References

Use these official Python docs when applying this skill.

Core Documentation

dictConfig-Specific

Practical Notes

  • Prefer app-level centralized config with one startup call to dictConfig.
  • In modules, use logging.getLogger(__name__).
  • Avoid calling basicConfig in libraries or scattered modules.