Add a bunch more debug info

This commit is contained in:
Oliver 2022-12-12 14:09:30 +11:00
parent af4b88c029
commit aa91f460b4

View File

@ -59,6 +59,13 @@ def get_config_file(create=True) -> Path:
def load_config_data() -> map:
"""Load configuration data from the config file."""
import sys
print("load_config_data()")
print("- cwd:", os.getcwd())
print("- exe:", sys.executable)
print("- path:", sys.path)
import yaml
cfg_file = get_config_file()