Skip to content

Commit 23a0763

Browse files
committed
Small fix from rebasing my changes
1 parent d023b9d commit 23a0763

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ModelContextProtocol/Client/McpClientExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public static class McpClientExtensions
2323
public static Task SetLogLevelAsync(this IMcpClient client, LoggingLevel loggingLevel, CancellationToken cancellationToken = default)
2424
{
2525
Throw.IfNull(client);
26-
return client.SendNotificationAsync("logging/setLevel", new SetLoggingLevelRequestParams { Level = loggingLevel }, cancellationToken);
26+
return client.SendNotificationAsync("logging/setLevel", new SetLevelRequestParams { Level = loggingLevel }, cancellationToken);
2727
}
2828

2929
/// <summary>

0 commit comments

Comments
 (0)