From e56bbfea9ac0aba51f28200848d6bfa48ed28b49 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Sun, 11 Sep 2011 20:45:54 +0200 Subject: [PATCH] less verbose output in default case Signed-off-by: Nico Schottelius --- bin/cdist | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/cdist b/bin/cdist index 1fd3e116..4267b3fa 100755 --- a/bin/cdist +++ b/bin/cdist @@ -415,7 +415,7 @@ class Cdist: output_fd.close() def init_deploy(self): - log.info("Creating clean directory structure") + log.debug("Creating clean directory structure") # Ensure there is no old stuff, neither local nor remote # remote_run_or_fail(hostname, ["rm -rf", "${__cdist_remote_base_dir}"]) @@ -542,7 +542,7 @@ class Cdist: def deploy_to(self): """Mimic the old deploy to: Deploy to one host""" - log.info("Deploying to host " + self.target_host) + log.info("Deploying to " + self.target_host) self.init_deploy() self.run_global_explores() self.run_initial_manifest()