removing debug logging

This commit is contained in:
Mose Mueller 2023-08-02 10:23:06 +02:00
parent 2310186065
commit c09886f188

View File

@ -39,7 +39,6 @@ CONFIG_DIR: Optional[Path] = None
# package name, check for the "database_config" directory inside the parent directory of # package name, check for the "database_config" directory inside the parent directory of
# the found directory. # the found directory.
if VENV_DIR is not None and VENV_DIR.parent.name != package_name: if VENV_DIR is not None and VENV_DIR.parent.name != package_name:
logger.debug(VENV_DIR.parent.name)
CONFIG_DIR = VENV_DIR.parent / "database_config" CONFIG_DIR = VENV_DIR.parent / "database_config"
if not CONFIG_DIR.exists(): if not CONFIG_DIR.exists():
CONFIG_DIR = None CONFIG_DIR = None