Skip to content

Commit 2a24e0c

Browse files
committed
removed dev print statements committed by mistake
1 parent e46c693 commit 2a24e0c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/mcp/server/lowlevel/server.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -601,14 +601,12 @@ async def _handle_notification(self, notify: Any):
601601
assert type(notify) in self.notification_handlers
602602

603603
handler = self.notification_handlers[type(notify)]
604-
print(f"Dispatching notification of type {type(notify).__name__}")
604+
logger.debug(f"Dispatching notification of type {type(notify).__name__}")
605605

606606
try:
607607
await handler(notify)
608608
except Exception as err:
609609
logger.error(f"Uncaught exception in notification handler: {err}")
610-
else:
611-
print(f"Not handling {notify}")
612610

613611

614612
async def _ping_handler(request: types.PingRequest) -> types.ServerResult:

0 commit comments

Comments
 (0)