We use the python logging module to print required log statements and then we will debug our code.
But I want to debug the logging module itself to understand its configuration. Could you suggest if any references available to debug?
We use "logging.getLogger" to get the logger object, and it starts printing in logs when we call log.debug or log.info.
But how do I know to which file it is printing, what the available handlers are, and if its not printing some log messages, how do I know what could have happened? I want complete information of that log. Any suggestions on how to achieve this would be greatly appreciated