Python Logging Part 3: Storing Logging Configurations

Опубликовано: 11 Июнь 2022
на канале: Jaydeep Karale
2,325
33

Python Logging module allows us to store logging configuration in 4 ways
1. basicConfig which can be done within each fike
2. fileConfig which reads from a config file of the ConfigParser format
3. dictConfig to read from a dictionary/JSON based logging configuration
4. YAML configuration which can be read using dictConfig

In this video we explore all of them in detail