Spaces:
Sleeping
Sleeping
File size: 488 Bytes
50fcf88 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
"""
Logging utility module.
This module provides a centralized logger instance using the standard library logging.
The logging configuration is handled by config/logger_setup.py which should be
called at application startup.
Usage:
from core.logging import logger
logger.info("Your message here")
"""
import logging
# Get a logger for the smartdoc module
# The actual configuration (handlers, formatters) is done in config/logger_setup.py
logger = logging.getLogger("smartdoc") |