Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,11 @@ long flush(
error.getRowIndexToErrorMessage().get(failedIndex),
tableDestination.getTableReference());
} catch (Exception e) {
LOG.error("Failed to insert row and could not parse the result!", e);
String msg =
String.format(
"Failed to insert row and could not parse the result! Insert error: %s",
error.getRowIndexToErrorMessage().get(failedIndex));
Comment thread
ahmedabu98 marked this conversation as resolved.
Outdated
LOG.error(msg, e);
}
// output outside try {} clause to avoid suppress downstream Exception
if (element != null) {
Expand Down
Loading