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)