From 6caa087efd33cc6e946a708899b1afc4cef29af2 Mon Sep 17 00:00:00 2001 From: foefl Date: Thu, 10 Apr 2025 11:12:57 +0200 Subject: [PATCH] re-enable logging --- pyproject.toml | 4 ++-- src/delta_barth/constants.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index cf953d1..0974385 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "delta-barth" -version = "0.5.6" +version = "0.5.7dev1" description = "workflows and pipelines for the Python-based Plugin of Delta Barth's ERP system" authors = [ {name = "Florian Förster", email = "f.foerster@d-opt.com"}, @@ -73,7 +73,7 @@ directory = "reports/coverage" [tool.bumpversion] -current_version = "0.5.6" +current_version = "0.5.7dev1" parse = """(?x) (?P0|[1-9]\\d*)\\. (?P0|[1-9]\\d*)\\. diff --git a/src/delta_barth/constants.py b/src/delta_barth/constants.py index 50c374e..45c74ba 100644 --- a/src/delta_barth/constants.py +++ b/src/delta_barth/constants.py @@ -15,7 +15,7 @@ assert dummy_data_pth.exists(), f"dummy data path not found: {dummy_data_pth}" DUMMY_DATA_PATH: Final[Path] = dummy_data_pth # ** logging -ENABLE_LOGGING: Final[bool] = False +ENABLE_LOGGING: Final[bool] = True LOGGING_TO_FILE: Final[bool] = True LOGGING_TO_STDERR: Final[bool] = True LOG_FILENAME: Final[str] = "dopt-delbar.log"