Skip to content

Commit

Permalink
add missing modules
Browse files Browse the repository at this point in the history
  • Loading branch information
chraibi committed Sep 20, 2024
1 parent 36279ff commit 9aeb011
Show file tree
Hide file tree
Showing 2 changed files with 583 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/utils/logger_config.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
"""
Setup logger
"""

import logging


def setup_logging() -> None:
"""Define logging setup."""
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s - %(levelname)s - %(filename)s:%(lineno)d - %(message)s",
datefmt="%Y-%m-%d %H:%M:%S",
)
Loading

0 comments on commit 9aeb011

Please sign in to comment.