mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
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 <flo@redhat.com>
This commit is contained in:
parent
3231c6fc79
commit
62521edcd1
@ -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
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user