Skip to content
Merged
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
4 changes: 2 additions & 2 deletions spec-grpc/src/main/java/io/a2a/grpc/utils/JSONRPCUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -418,8 +418,8 @@ public static void parseJsonString(String body, com.google.protobuf.Message.Buil
try {
JsonFormat.parser().merge(body, builder);
} catch (InvalidProtocolBufferException e) {
log.log(Level.SEVERE, "Protocol buffer parsing failed for JSON: {0}", body);
log.log(Level.SEVERE, "Proto parsing error details", e);
log.log(Level.FINE, "Protocol buffer parsing failed for JSON: {0}", body);
log.log(Level.FINE, "Proto parsing error details", e);
throw convertProtoBufExceptionToJsonProcessingException(e, id);
}
}
Expand Down
Loading