|
@@ -41,7 +41,7 @@ def launch():
|
|
|
configuration = toml.loads((data_dir / Path("configuration.toml")).read_text(encoding="utf-8"))
|
|
|
configuration = dacite.from_dict(data_class=Configuration, data=configuration, )
|
|
|
except FileNotFoundError as e:
|
|
|
- logging.error(f"Configuration not found. {e}")
|
|
|
+ logging.error(f"Configuration 'configuration.toml' not found. {e}")
|
|
|
return 8
|
|
|
|
|
|
logging.debug("Configuration:")
|