Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,9 @@ public sealed class LoggingMessageNotificationParams : NotificationParams
public string? Logger { get; set; }

/// <summary>
/// Gets or sets the data to be logged, such as a string message.
/// Gets or sets the data to be logged, such as a string message or an object.
/// Any JSON serializable type is allowed here.
/// </summary>
[JsonPropertyName("data")]
public JsonElement? Data { get; set; }
public required JsonElement Data { get; set; }
}
4 changes: 1 addition & 3 deletions tests/ModelContextProtocol.Tests/Client/McpClientTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -539,11 +539,9 @@ public async Task AsClientLoggerProvider_MessagesSentToClient()
{
var m = await channel.Reader.ReadAsync(TestContext.Current.CancellationToken);
Assert.NotNull(m);
Assert.NotNull(m.Data);

Assert.Equal("TestLogger", m.Logger);

string? s = JsonSerializer.Deserialize<string>(m.Data.Value, McpJsonUtilities.DefaultOptions);
string? s = JsonSerializer.Deserialize<string>(m.Data, McpJsonUtilities.DefaultOptions);
Assert.NotNull(s);

if (s.Contains("Information"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ public static void LoggingMessageNotificationParams_SerializationRoundTrip_Prese
Assert.NotNull(deserialized);
Assert.Equal(LoggingLevel.Warning, deserialized.Level);
Assert.Equal("MyApp.Services", deserialized.Logger);
Assert.NotNull(deserialized.Data);
Assert.Equal("Something went wrong", deserialized.Data.Value.GetString());
Assert.Equal("Something went wrong", deserialized.Data.GetString());
Assert.NotNull(deserialized.Meta);
Assert.Equal("value", (string)deserialized.Meta["key"]!);
}
Expand All @@ -34,7 +33,8 @@ public static void LoggingMessageNotificationParams_SerializationRoundTrip_WithM
{
var original = new LoggingMessageNotificationParams
{
Level = LoggingLevel.Error
Level = LoggingLevel.Error,
Data = JsonDocument.Parse("\"error occurred\"").RootElement.Clone(),
};

string json = JsonSerializer.Serialize(original, McpJsonUtilities.DefaultOptions);
Expand All @@ -43,7 +43,7 @@ public static void LoggingMessageNotificationParams_SerializationRoundTrip_WithM
Assert.NotNull(deserialized);
Assert.Equal(LoggingLevel.Error, deserialized.Level);
Assert.Null(deserialized.Logger);
Assert.Null(deserialized.Data);
Assert.Equal("error occurred", deserialized.Data.GetString());
Assert.Null(deserialized.Meta);
}
}