removed logger from paramiko

(cherry picked from commit 9b7dfd5945ec1ab329e288493b6962d4e8c33fa0)
This commit is contained in:
Brian Coca 2017-07-05 11:11:23 -04:00
parent ef7f56c6e4
commit 02311604c9

View file

@ -27,7 +27,6 @@ __metaclass__ = type
import warnings
import os
import socket
import logging
import tempfile
import traceback
import fcntl
@ -68,7 +67,6 @@ with warnings.catch_warnings():
try:
import paramiko
HAVE_PARAMIKO = True
logging.getLogger("paramiko").setLevel(logging.WARNING)
except ImportError:
pass