I want to stop the module adding INFO messages to my log file. However, the module doesn't use its own logger rather the root logger (logging.basicConfig) and sets the level in the run() function, meaning that I cannot output to WARNING and above without editing the code itself.
Is there a way to get around this?
I want to stop the module adding INFO messages to my log file. However, the module doesn't use its own logger rather the root logger (logging.basicConfig) and sets the level in the run() function, meaning that I cannot output to WARNING and above without editing the code itself.
Is there a way to get around this?