We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e46c693 commit 2a24e0cCopy full SHA for 2a24e0c
src/mcp/server/lowlevel/server.py
@@ -601,14 +601,12 @@ async def _handle_notification(self, notify: Any):
601
assert type(notify) in self.notification_handlers
602
603
handler = self.notification_handlers[type(notify)]
604
- print(f"Dispatching notification of type {type(notify).__name__}")
+ logger.debug(f"Dispatching notification of type {type(notify).__name__}")
605
606
try:
607
await handler(notify)
608
except Exception as err:
609
logger.error(f"Uncaught exception in notification handler: {err}")
610
- else:
611
- print(f"Not handling {notify}")
612
613
614
async def _ping_handler(request: types.PingRequest) -> types.ServerResult:
0 commit comments