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