We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d023b9d commit 23a0763Copy full SHA for 23a0763
1 file changed
src/ModelContextProtocol/Client/McpClientExtensions.cs
@@ -23,7 +23,7 @@ public static class McpClientExtensions
23
public static Task SetLogLevelAsync(this IMcpClient client, LoggingLevel loggingLevel, CancellationToken cancellationToken = default)
24
{
25
Throw.IfNull(client);
26
- return client.SendNotificationAsync("logging/setLevel", new SetLoggingLevelRequestParams { Level = loggingLevel }, cancellationToken);
+ return client.SendNotificationAsync("logging/setLevel", new SetLevelRequestParams { Level = loggingLevel }, cancellationToken);
27
}
28
29
/// <summary>
0 commit comments