fixing DQ issues
This commit is contained in:
@@ -1,4 +1,12 @@
|
||||
# app/core/logging.py
|
||||
"""Summary description ....
|
||||
|
||||
This module provides classes and functions for:
|
||||
- ....
|
||||
- ....
|
||||
- ....
|
||||
"""
|
||||
|
||||
import logging
|
||||
import sys
|
||||
from pathlib import Path
|
||||
@@ -7,8 +15,7 @@ from app.core.config import settings
|
||||
|
||||
|
||||
def setup_logging():
|
||||
"""Configure application logging with file and console handlers"""
|
||||
|
||||
"""Configure application logging with file and console handlers."""
|
||||
# Create logs directory if it doesn't exist
|
||||
log_file = Path(settings.log_file)
|
||||
log_file.parent.mkdir(parents=True, exist_ok=True)
|
||||
|
||||
Reference in New Issue
Block a user