diff --git a/src/fastmcp/utilities/logging.py b/src/fastmcp/utilities/logging.py index 24f98012c..e2dd5f45e 100644 --- a/src/fastmcp/utilities/logging.py +++ b/src/fastmcp/utilities/logging.py @@ -7,15 +7,15 @@ from rich.logging import RichHandler def get_logger(name: str) -> logging.Logger: - """Get a logger nested under fastmcp namespace. + """Get a logger nested under FastMCP namespace. Args: - name: the name of the logger, which will be prefixed with 'fastmcp.' + name: the name of the logger, which will be prefixed with 'FastMCP.' Returns: a configured logger instance """ - return logging.getLogger(f"fastmcp.{name}") + return logging.getLogger(f"FastMCP.{name}") def configure_logging(