Skip to content

Commit

Permalink
[Bug][Connector-V2][Kafka] Json deserialize exception log no content #…
Browse files Browse the repository at this point in the history
…3873  (#3874)

* [Bug] [connector][kafka] json deserialize exception log no content

* fix
  • Loading branch information
MonsterChenzhuo authored Jan 6, 2023
1 parent fa92904 commit 73fc0c1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ private SeaTunnelRow convertJsonNode(JsonNode jsonNode) throws IOException {
return null;
}
throw new SeaTunnelJsonFormatException(CommonErrorCode.JSON_OPERATION_FAILED,
String.format("Failed to deserialize JSON '%s'.", jsonNode.asText()), t);
String.format("Failed to deserialize JSON '%s'.", jsonNode), t);
}
}

Expand Down

0 comments on commit 73fc0c1

Please sign in to comment.