We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e0cf9f commit d7de6b8Copy full SHA for d7de6b8
1 file changed
mcp-core/src/main/java/io/modelcontextprotocol/spec/McpSchema.java
@@ -2320,6 +2320,7 @@ public LoggingMessageNotification build() {
2320
*/
2321
public enum LoggingLevel {
2322
2323
+ // @formatter:off
2324
@JsonProperty("debug") DEBUG(0),
2325
@JsonProperty("info") INFO(1),
2326
@JsonProperty("notice") NOTICE(2),
@@ -2328,6 +2329,7 @@ public enum LoggingLevel {
2328
2329
@JsonProperty("critical") CRITICAL(5),
2330
@JsonProperty("alert") ALERT(6),
2331
@JsonProperty("emergency") EMERGENCY(7);
2332
+ // @formatter:on
2333
2334
private final int level;
2335
0 commit comments