feat: add structlog logging configuration

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-24 09:05:14 -06:00
parent a211f9b6bd
commit fb4b948681
2 changed files with 70 additions and 0 deletions

48
app/logging_config.py Normal file
View File

@@ -0,0 +1,48 @@
"""Structured logging configuration using structlog.
Call setup_logging() once at application startup to configure
structlog with human-readable (dev) or JSON (prod) output.
"""
import logging
import sys
import structlog
def setup_logging(log_level: str = "info") -> None:
"""Configure structlog for the application.
In development, output is colorized and human-readable.
In production, output is JSON for structured log aggregation.
Args:
log_level: Minimum log level as a string (e.g., 'info', 'debug').
"""
numeric_level = getattr(logging, log_level.upper(), logging.INFO)
# Configure standard library logging (captured by structlog)
logging.basicConfig(
format="%(message)s",
stream=sys.stdout,
level=numeric_level,
)
structlog.configure(
processors=[
structlog.contextvars.merge_contextvars,
structlog.stdlib.filter_by_level,
structlog.stdlib.add_logger_name,
structlog.stdlib.add_log_level,
structlog.stdlib.PositionalArgumentsFormatter(),
structlog.processors.TimeStamper(fmt="iso"),
structlog.processors.StackInfoRenderer(),
structlog.processors.format_exc_info,
structlog.processors.UnicodeDecoder(),
structlog.dev.ConsoleRenderer(),
],
wrapper_class=structlog.stdlib.BoundLogger,
context_class=dict,
logger_factory=structlog.stdlib.LoggerFactory(),
cache_logger_on_first_use=True,
)

22
tests/test_logging.py Normal file
View File

@@ -0,0 +1,22 @@
"""Tests for structured logging configuration."""
import structlog
from app.logging_config import setup_logging
class TestLogging:
"""Tests for the structlog configuration."""
def test_setup_logging_configures_structlog(self) -> None:
"""setup_logging should configure structlog without errors."""
setup_logging(log_level="info")
logger = structlog.get_logger("test")
assert logger is not None
def test_logger_can_log_message(self) -> None:
"""A configured logger should be able to emit a log message."""
setup_logging(log_level="debug")
logger = structlog.get_logger("test_module")
# Should not raise
logger.info("test message", key="value")