From 4d03debb5b84b5b3e096add468ecd87c55ed0f5f Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Fri, 4 Feb 2022 12:13:37 -0800 Subject: Have bootstrap log the site_config at program initialization. --- bootstrap.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'bootstrap.py') diff --git a/bootstrap.py b/bootstrap.py index c89952a..2df9588 100644 --- a/bootstrap.py +++ b/bootstrap.py @@ -252,6 +252,11 @@ def initialize(entry_point): logger.debug(f'Python C API version: {sys.api_version}') logger.debug(f'Python path: {sys.path}') + # Log something about the site_config, many things use it. + import site_config + + logger.debug(f'Global site_config: {site_config.get_config()}') + # Allow programs that don't bother to override the random seed # to be replayed via the commandline. import random -- cgit v1.3