From e6ff5626354d1769be417f03104b063a4bdfff36 Mon Sep 17 00:00:00 2001 From: Mike Kistler Date: Tue, 18 Nov 2025 13:21:28 -0800 Subject: [PATCH] Set logging level before calling test_tool_with_logging --- src/scenarios/server/tools.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/scenarios/server/tools.ts b/src/scenarios/server/tools.ts index 656df0a..ae07cb2 100644 --- a/src/scenarios/server/tools.ts +++ b/src/scenarios/server/tools.ts @@ -388,6 +388,9 @@ Implement tool \`test_tool_with_logging\` with no arguments. const connection = await connectToServer(serverUrl); const notifications = new NotificationCollector(connection.client); + // Set logging level to debug + await connection.client.setLoggingLevel('debug'); + await connection.client.callTool({ name: 'test_tool_with_logging', arguments: {}