logger.info logs added

voicemeeter-api, vban-cmd dependency ver updated

changelog updated to reflect changes

minor version bump
This commit is contained in:
onyx-and-iris
2022-09-29 13:45:06 +01:00
parent d4b2b90fc0
commit 35775f5024
9 changed files with 49 additions and 15 deletions

View File

@@ -1,3 +1,4 @@
import logging
from pathlib import Path
try:
@@ -5,6 +6,8 @@ try:
except ModuleNotFoundError:
import tomli as tomllib
LOGGER = logging.getLogger("configurations")
configuration = {}
config_path = [Path.cwd() / "configs"]
@@ -21,7 +24,7 @@ for path in config_path:
print(f"Invalid TOML config: configs/{filename.stem}")
for name, cfg in configs.items():
print(f"Loaded configuration configs/{name}")
LOGGER.info(f"Loaded configuration configs/{name}")
configuration[name] = cfg
_defaults = {