From dd0ad2683b2d8617b376d8b37a5edb99822681b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Sun, 17 Mar 2024 21:32:23 +0100 Subject: [PATCH] drop secret store logging from install command --- pkgs/clan-cli/clan_cli/machines/install.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/clan-cli/clan_cli/machines/install.py b/pkgs/clan-cli/clan_cli/machines/install.py index 82566adf..8f9cbb97 100644 --- a/pkgs/clan-cli/clan_cli/machines/install.py +++ b/pkgs/clan-cli/clan_cli/machines/install.py @@ -16,7 +16,6 @@ log = logging.getLogger(__name__) def install_nixos(machine: Machine, kexec: str | None = None) -> None: secrets_module = importlib.import_module(machine.secrets_module) log.info(f"installing {machine.name}") - log.info(f"using secret store: {secrets_module.SecretStore}") secret_store = secrets_module.SecretStore(machine=machine) h = machine.target_host