Spaces:
Running
Running
File size: 1,038 Bytes
bd185a2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | import logging
from fastmcp.utilities.logging import get_logger
def test_logging_doesnt_affect_other_loggers(caplog):
# set FastMCP loggers to CRITICAL and ensure other loggers still emit messages
original_level = logging.getLogger("FastMCP").getEffectiveLevel()
try:
logging.getLogger("FastMCP").setLevel(logging.CRITICAL)
root_logger = logging.getLogger()
app_logger = logging.getLogger("app")
fastmcp_logger = logging.getLogger("FastMCP")
fastmcp_server_logger = get_logger("server")
with caplog.at_level(logging.INFO):
root_logger.info("--ROOT--")
app_logger.info("--APP--")
fastmcp_logger.info("--FASTMCP--")
fastmcp_server_logger.info("--FASTMCP SERVER--")
assert "--ROOT--" in caplog.text
assert "--APP--" in caplog.text
assert "--FASTMCP--" not in caplog.text
assert "--FASTMCP SERVER--" not in caplog.text
finally:
logging.getLogger("FastMCP").setLevel(original_level)
|