diff options
Diffstat (limited to 'bootstrap.py')
| -rw-r--r-- | bootstrap.py | 5 |
1 files changed, 5 insertions, 0 deletions
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 |
