Paramiko does not display anything by default. You probably have a call to the logging module by installing loglevel, which is inherited when paramiko installs its own log.
If you want to get a paramiko registrar to override settings:
logger = paramiko.util.logging.getLogger()
There is also a convenience function for recording the entire file:
paramiko.util.log_to_file('filename.log')
source share