Skip to content

Commit b692d31

Browse files
committed
fix print log
1 parent 95fa295 commit b692d31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rdb/rdb-sink/src/main/java/com/dtstack/flink/sql/sink/rdb/format/RetractJDBCOutputFormat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ private void writeSingleRecord(Row row) {
211211
} catch (SQLException e) {
212212
outDirtyRecords.inc();
213213
if (outDirtyRecords.getCount() % dirtyDataPrintFrequency == 0 || LOG.isDebugEnabled()) {
214-
LOG.error("record insert failed ..", row.toString());
214+
LOG.error("record insert failed ..{}", row.toString());
215215
LOG.error("", e);
216216
}
217217
}

0 commit comments

Comments
 (0)