I\'m using the Python logging module, and would like to disable log messages printed by the third party modules that I import. For example, I\'m using something like the fo
Simply doing something like this solves the problem:
logging.config.dictConfig({'disable_existing_loggers': True,})
NOTE: Wherever you're placing this line, make sure all the imports everywhere in your project are done within that file itself. :)