i have imported 2 modules paramiko and pyftpdlib in my python code.
i am able to suppress paramiko SSH logging to console by using the following line.
logging.getLogger("paramiko").setLevel(logging.WARNING)
i then tried to disable console outputs from pyftpdlib by placing this line in my function code for starting my ftp server for pyftpdlib
logging.basicConfig(level=logging.WARNING)
when i do this it caused paramiko log suppression to stop working and see info messages printed to console from paramiko.
i'm trying to figure how to disable BOTH from logging to console?