We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5ddec50 + 8cce799 commit e0ead26Copy full SHA for e0ead26
src/fastmcp/utilities/logging.py
@@ -3,6 +3,7 @@
3
import logging
4
from typing import Literal
5
6
+from rich.console import Console
7
from rich.logging import RichHandler
8
9
@@ -27,5 +28,7 @@ def configure_logging(
27
28
level: the log level to use
29
"""
30
logging.basicConfig(
- level=level, format="%(message)s", handlers=[RichHandler(rich_tracebacks=True)]
31
+ level=level,
32
+ format="%(message)s",
33
+ handlers=[RichHandler(console=Console(stderr=True), rich_tracebacks=True)],
34
)
0 commit comments