How to set logging level in python? - Stack Overflow
https://stackoverflow.com/questions/67805599/how-to-set-logging-level-in-python
The method you used, sets the logging level for this logger specifically, meaning the specific logger won't actually do anything when logging on lower leverls - it has nothing to do with the logging level of the process and printing. Using logging.basicConfig you config the process' logging level, so even if you have multiple loggers this level will determine which logging messages come out of the process. Reviews: 5
Reviews: 5
DA: 41 PA: 3 MOZ Rank: 48