summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Brown <ben.brown@codethink.co.uk>2018-02-06 16:59:50 +0000
committerBen Brown <ben.brown@codethink.co.uk>2018-02-09 13:27:33 +0000
commit3bd2fdd8a1b695b88b5dbc2686f3c0c7c622950e (patch)
tree38fb5b259a0a130c20c42161af3c9f7c2a9f6c0b
parent8b8265601c46128141b9ce00b85046da75569d5c (diff)
downloadybd-3bd2fdd8a1b695b88b5dbc2686f3c0c7c622950e.tar.gz
Only log copying to deployment area when running verbosely
-rw-r--r--ybd/rpm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ybd/rpm.py b/ybd/rpm.py
index 5daa53c..f3dd272 100644
--- a/ybd/rpm.py
+++ b/ybd/rpm.py
@@ -523,7 +523,7 @@ def deploy_rpm(dn, userdata):
dstfilename = rpm_deployment_filename(dn, cached_path)
dstpath = os.path.join(userdata['dstdir'], dstfilename)
shutil.copyfile(cached_path, dstpath)
- app.log(dn, "Copied %s to deployment area" % dstfilename)
+ app.log(dn, "Copied %s to deployment area" % dstfilename, verbose=True)
return True