From 5c117fd4fecb606010d08dfc42791a9bfed75c32 Mon Sep 17 00:00:00 2001 From: zzstoatzz Date: Sat, 30 Nov 2024 19:03:50 -0600 Subject: [PATCH] more --- src/fastmcp/utilities/logging.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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(