We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10f864a commit 591a337Copy full SHA for 591a337
1 file changed
src/config.py
@@ -6,13 +6,22 @@
6
"""
7
8
# %%
9
-# Import
+# Preamble
10
+
11
+import logging
12
13
from pyprojroot import here
14
15
+# logging.basicConfig(level=logging.INFO)
16
17
+logger = logging.getLogger(__name__)
18
19
20
# Paths
21
22
PROJ_ROOT = here()
23
24
+logger.info(f"PROJ_ROOT path is: {PROJ_ROOT}")
25
26
DATA_DIR = PROJ_ROOT / "data"
27
RES_DIR = PROJ_ROOT / "results"
0 commit comments