From 62521edcd17f2d24393377513afc9acb3e397410 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Fri, 22 Jan 2021 17:23:53 -0500 Subject: [PATCH] Change CA profile migration message from info to debug This is an informational message and clutters the installation screen with no end-user benefit. Logging it as debug is sufficient to know what is going on. Reviewed-By: Florence Blanc-Renaud --- ipaserver/install/cainstance.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ipaserver/install/cainstance.py b/ipaserver/install/cainstance.py index 131418df7..8196e3dee 100644 --- a/ipaserver/install/cainstance.py +++ b/ipaserver/install/cainstance.py @@ -1959,7 +1959,7 @@ def import_included_profiles(): _create_dogtag_profile(profile_id, profile_data, overwrite=True) logger.debug("Imported profile '%s'", profile_id) else: - logger.info( + logger.debug( "Profile '%s' is already in LDAP; skipping", profile_id ) @@ -2034,7 +2034,7 @@ def migrate_profiles_to_ldap(): state = profile_states.get(profile_id.lower(), ProfileState.MISSING) if state != ProfileState.MISSING: # We don't reconsile enabled/disabled state. - logger.info( + logger.debug( "Profile '%s' is already in LDAP and %s; skipping", profile_id, state.value )