From e1421280d4700f505f320e126abc4de8bafab347 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Tue, 13 Sep 2011 18:18:56 +0200 Subject: [PATCH] remove debug Signed-off-by: Nico Schottelius --- bin/cdist | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bin/cdist b/bin/cdist index a468e2fc..ad5584af 100755 --- a/bin/cdist +++ b/bin/cdist @@ -613,10 +613,9 @@ def config(args): for host in args.host: c = Cdist(host, initial_manifest=args.manifest, home=args.cdist_home, debug=args.debug) if args.parallel: - log.debug("Starting child process for %s", host) + log.debug("Creating child process for %s", host) process[host] = multiprocessing.Process(target=c.deploy_and_cleanup) process[host].start() - log.debug("After process for %s", host) else: c.deploy_and_cleanup()