File size: 340 Bytes
cacd4d0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"""
Infrastructure module for cross-cutting concerns.

This module contains infrastructure components that are used across
the entire application, including logging, metrics, and configuration.
"""

from .logging import get_logger, configure_logging, LogContext

__all__ = [
    "get_logger",
    "configure_logging", 
    "LogContext",
]