From 3bd2fdd8a1b695b88b5dbc2686f3c0c7c622950e Mon Sep 17 00:00:00 2001 From: Ben Brown Date: Tue, 6 Feb 2018 16:59:50 +0000 Subject: Only log copying to deployment area when running verbosely --- ybd/rpm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.1