summaryrefslogtreecommitdiffstats
path: root/connect.py
diff options
context:
space:
mode:
authorlhinds <lhinds@redhat.com>2017-02-06 09:34:14 +0000
committerlhinds <lhinds@redhat.com>2017-02-06 09:35:59 +0000
commit6a49edba3cbb87597e1fadfb639006c1748340f3 (patch)
tree980d072efb557c49b268c56dd9be17573d27a729 /connect.py
parentcc523a5dac4478ccb4baa5650d672ba7ac5cf895 (diff)
Lowers logging outout to debug
Change-Id: Ic10e18d652e76fadff6157f32b8f06d0e55d47f9 JIRA: SECSCAN-20 Signed-off-by: lhinds <lhinds@redhat.com>
Diffstat (limited to 'connect.py')
-rw-r--r--connect.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/connect.py b/connect.py
index 546e44d..f2d9dc5 100644
--- a/connect.py
+++ b/connect.py
@@ -232,9 +232,9 @@ class ConnectionManager:
logger.error("Socker Connection failed for "
"undercloud host: {0}".format(self.host))
sftp = remote_client.open_sftp()
- logger.info("Downloading \"{0}\"...".format(reportname))
+ logger.debug("Downloading \"{0}\"...".format(reportname))
sftp.get(reportfile, ('{0}/{1}'.format(dl_folder, reportname)))
- logger.info("Downloading \"{0}\"...".format(resultsname))
+ logger.debug("Downloading \"{0}\"...".format(resultsname))
sftp.get(reportfile, ('{0}/{1}'.format(dl_folder, resultsname)))
sftp.close()
transport.close()