From 000b56a3236645ed00e5846ee4d068283687667e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Poulin?= Date: Wed, 16 Jul 2025 16:33:08 -0400 Subject: [PATCH] Move annoying "skipping disabled profile" log to debug. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Poulin --- utils/apparmor/aa.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/apparmor/aa.py b/utils/apparmor/aa.py index f4383c39d..49bdc54f4 100644 --- a/utils/apparmor/aa.py +++ b/utils/apparmor/aa.py @@ -1630,7 +1630,7 @@ def read_profiles(ui_msg=False, skip_profiles=(), skip_disabled=True, skip_perm_ if is_skippable_file(file): continue elif skip_disabled and os.path.exists(f'{profile_dir}/disable/{file}'): - aaui.UI_Info("skipping disabled profile %s" % file) + debug_logger.debug("skipping disabled profile %s", file) continue elif file in skip_profiles: aaui.UI_Info("skipping profile %s" % full_file)