mirror of
https://github.com/PrefectHQ/fastmcp.git
synced 2026-08-09 15:19:10 +02:00
Co-authored-by: marvin-context-protocol[bot] <225465937+marvin-context-protocol[bot]@users.noreply.github.com>
58 lines
1.9 KiB
Text
58 lines
1.9 KiB
Text
---
|
|
title: logging
|
|
sidebarTitle: logging
|
|
---
|
|
|
|
# `fastmcp.server.middleware.logging`
|
|
|
|
|
|
Comprehensive logging middleware for FastMCP servers.
|
|
|
|
## Functions
|
|
|
|
### `default_serializer` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/server/middleware/logging.py#L15" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
|
|
```python
|
|
default_serializer(data: Any) -> str
|
|
```
|
|
|
|
|
|
The default serializer for Payloads in the logging middleware.
|
|
|
|
|
|
## Classes
|
|
|
|
### `BaseLoggingMiddleware` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/server/middleware/logging.py#L20" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
|
|
|
|
Base class for logging middleware.
|
|
|
|
|
|
**Methods:**
|
|
|
|
#### `on_message` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/server/middleware/logging.py#L124" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
|
|
```python
|
|
on_message(self, context: MiddlewareContext[Any], call_next: CallNext[Any, Any]) -> Any
|
|
```
|
|
|
|
Log messages for configured methods.
|
|
|
|
|
|
### `LoggingMiddleware` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/server/middleware/logging.py#L148" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
|
|
|
|
Middleware that provides comprehensive request and response logging.
|
|
|
|
Logs all MCP messages with configurable detail levels. Useful for debugging,
|
|
monitoring, and understanding server usage patterns.
|
|
|
|
|
|
### `StructuredLoggingMiddleware` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/server/middleware/logging.py#L203" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
|
|
|
|
Middleware that provides structured JSON logging for better log analysis.
|
|
|
|
Outputs structured logs that are easier to parse and analyze with log
|
|
aggregation tools like ELK stack, Splunk, or cloud logging services.
|
|
|