From 5f05e36c9d3618186f53346d292f811666887e0c Mon Sep 17 00:00:00 2001 From: pinpox Date: Tue, 28 Oct 2025 15:32:06 +0100 Subject: [PATCH] Remove outdated facts message One every executino of `clan machines update` a message referring to facts is still being printed. While there is more code to be cleaned up around facts, this simple change removes the prominent message out of user's attention. --- pkgs/clan-cli/clan_cli/facts/generate.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/clan-cli/clan_cli/facts/generate.py b/pkgs/clan-cli/clan_cli/facts/generate.py index efe97cb0a..6b6faf97f 100644 --- a/pkgs/clan-cli/clan_cli/facts/generate.py +++ b/pkgs/clan-cli/clan_cli/facts/generate.py @@ -225,7 +225,9 @@ def generate_facts( raise ClanError(msg) if not was_regenerated and len(machines) > 0: - log.info("All secrets and facts are already up to date") + pass + # Remove message until facts has been propertly deleted + # log.info("All secrets and facts are already up to date") return was_regenerated