No handlers could be found for logger paramiko

python

Solution

I found the solution from this website.

Basically, you just need to add a line:

paramiko.util.log_to_file("filename.log")

Then all connection will be logged to the file.

Problem

I am using paramiko module for ssh connection.I am facing below problem: No handlers could be found for logger I am not getting the reason of this problem.I tried to get solution from below link but not able to get reason. No handlers could be found for logger "paramiko.transport" I am using below code: ``` 1.ssh = paramiko.SSHClient() 2.ssh.set_missing_host_key_policy( 3.paramiko.AutoAddPolicy()) 4.ssh.connect(serverip, username=username, 5.password=password,timeout=None) 6.transport = ssh.get_transport() 7.transport.set_keepalive(30) 8.stdin, stdout, stderr =ssh.exec_command(cmd) 9.tables=stdout.readlines() 10.ssh.close() ``` I think i am getting this problem at line no 8.Please advice how can i solve this.

Original source