Merge "Ensure options are dumped in debug logs"

This commit is contained in:
Zuul 2023-02-13 13:23:56 +00:00 committed by Gerrit Code Review
commit 55b2d70c4d
3 changed files with 7 additions and 0 deletions

View File

@ -94,6 +94,8 @@ def _start_provider_agents(exit_event):
def main():
service.prepare_service(sys.argv)
LOG.debug('Full set of CONF:')
CONF.log_opt_values(LOG, logging.DEBUG)
gmr.TextGuruMeditation.setup_autorun(version)

View File

@ -87,6 +87,9 @@ def _handle_mutate_config(listener_proc_pid, check_proc_pid, *args, **kwargs):
def main():
service.prepare_service(sys.argv)
LOG.debug('Full set of CONF:')
CONF.log_opt_values(LOG, logging.DEBUG)
gmr.TextGuruMeditation.setup_autorun(version)
processes = []

View File

@ -78,6 +78,8 @@ def _mutate_config(*args, **kwargs):
def main():
service.prepare_service(sys.argv)
LOG.debug('Full set of CONF:')
CONF.log_opt_values(LOG, logging.DEBUG)
gmr.TextGuruMeditation.setup_autorun(version)