Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
866 - Formatting error message
  • Loading branch information
vijaykriishna committed Sep 29, 2025
commit 6f98f862f6f06ff3bdf1dc5c52cc9235d9e25665
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public String toString() {
generator.close();
return writer.toString();
} catch (IOException e) {
return "<JacksonJsonBuffer: error rendering JSON: " + e.getMessage() + ">";
return String.format("JacksonJsonBuffer: error rendering JSON: %s", e.getMessage());
}
}
}