From this stackoverflow question, how does one implement the following configuration file?
[logger_qpid] level=NOTSET handlers=nullHandler qualname=qpid prop
From the suds package's documentation site, you can set the level for a specific package by using the setLevel method. For example, here's how to set the level of all suds logging to INFO level (place after logging.basicConfig() code):
logging.basicConfig()
logging.getLogger('suds').setLevel(logging.INFO)