Skip to content

Commit

Permalink
debug info
Browse files Browse the repository at this point in the history
  • Loading branch information
damccorm committed Dec 20, 2024
1 parent f0c0f58 commit 5f816a1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public static byte[] serializeToByteArray(Serializable value) {
return buffer.toByteArray();
} catch (IOException exn) {
ObjectWriter ow = new ObjectMapper().writer().withDefaultPrettyPrinter();
throw new IllegalArgumentException("unable to serialize " + ow.writeValueAsString(object), exn);
throw new IllegalArgumentException("unable to serialize " + ow.writeValueAsString(value), exn);
}
}

Expand Down

0 comments on commit 5f816a1

Please sign in to comment.