MukeshKapoor25's picture
feat(logging): implement structured logging across services
1988d77
import logging
def get_logger(name: str) -> logging.Logger:
"""
Get a logger instance with the specified name.
Args:
name: The name of the logger, typically __name__
Returns:
logging.Logger: The configured logger instance
"""
return logging.getLogger(name)