Fixes: 1) Fixed missing `exc_info` flag in critical and error logs to provide richer error context; 2) Addressed redundant code and unused imports in the logging logic for cleaner execution. Extra: Refactored `LOGGING` configuration for improved readability and runtime adaptability; optimized related log-handling logic throughout the codebase.
24 lines
494 B
Python
24 lines
494 B
Python
from enum import Enum
|
|
from importlib import import_module
|
|
from typing import Any
|
|
|
|
|
|
def create_object(module_name: str, class_name: str, *args: list[Any], **kwargs: dict[Any, Any]) -> Any:
|
|
module = import_module(module_name)
|
|
|
|
cls = getattr(module, class_name)
|
|
|
|
return cls(*args, **kwargs)
|
|
|
|
|
|
class LoggingError(Exception):
|
|
pass
|
|
|
|
|
|
class LogLevel(Enum):
|
|
DEBUG = "debug"
|
|
INFO = "info"
|
|
WARNING = "warning"
|
|
ERROR = "error"
|
|
CRITICAL = "critical"
|
|
TRACE = "trace"
|