From a1d73f72811c9675952d070b5c84e969a698a3c9 Mon Sep 17 00:00:00 2001 From: Steven Armstrong Date: Tue, 4 Jul 2017 16:46:27 +0200 Subject: [PATCH] log changing object as Processing instead of Updating Signed-off-by: Steven Armstrong --- cdist/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cdist/config.py b/cdist/config.py index d0478c8c..0d847dea 100644 --- a/cdist/config.py +++ b/cdist/config.py @@ -493,7 +493,7 @@ class Config(object): # Execute if not self.dry_run: if cdist_object.code_local or cdist_object.code_remote: - self.log.info("Updating %s" % (cdist_object.name)) + self.log.info("Processing %s" % (cdist_object.name)) if cdist_object.code_local: self.log.trace("Executing local code for %s" % (cdist_object.name))