From f11208c649be9c40fa448e2af70bb9ad091587f0 Mon Sep 17 00:00:00 2001 From: Roman Date: Fri, 21 Feb 2025 10:30:57 +1100 Subject: [PATCH] fix: cleanup logging in prepare_cluster_config --- src/steps/common.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/steps/common.py b/src/steps/common.py index 9ddb65d..2ba7c8a 100644 --- a/src/steps/common.py +++ b/src/steps/common.py @@ -22,7 +22,6 @@ def prepare_cluster_config(node_count, subnetwork_size=2): template = Template(template_content) rendered = template.render(num_hosts=node_count, subnet_size=subnetwork_size) - logger.debug(f"Rendered template {rendered}") with open(f"{cwd}/{config_dir}/cfgsync.yaml", "w") as outfile: outfile.write(rendered)