Include plugin selection at the info logging level (#5010)

* Plugin selection on INFO

* Fixed lint errors

* Fixed lint errors

* record_chosen_plugin log plugin
This commit is contained in:
Winston Smith
2017-08-10 16:51:19 -07:00
committed by Brad Warren
parent af322a6068
commit 16ed141301
2 changed files with 4 additions and 0 deletions
+2
View File
@@ -142,6 +142,8 @@ def record_chosen_plugins(config, plugins, auth, inst):
"Update the config entries to reflect the plugins we actually selected."
config.authenticator = plugins.find_init(auth).name if auth else "None"
config.installer = plugins.find_init(inst).name if inst else "None"
logger.info("Plugins selected: Authenticator %s, Installer %s",
config.authenticator, config.installer)
def choose_configurator_plugins(config, plugins, verb):