Skip to content

Commit b4ff94b

Browse files
authored
Update CdcJdbcIO.java
remove test logs
1 parent 6c22a7a commit b4ff94b

File tree

1 file changed

+0
-2
lines changed
  • v2/datastream-common/src/main/java/com/google/cloud/teleport/v2/datastream/io

1 file changed

+0
-2
lines changed

v2/datastream-common/src/main/java/com/google/cloud/teleport/v2/datastream/io/CdcJdbcIO.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,6 @@ private void executeBatchMultiStatementFormatting()
569569

570570
for (T record : records) {
571571
String formattedStatement = spec.getStatementFormatter().formatStatement(record);
572-
LOG.info("FINDME SQL: {}", formattedStatement);
573572
statement.addBatch(formattedStatement);
574573
}
575574

@@ -584,7 +583,6 @@ private void executeBatchSingleStatementFormatting()
584583

585584
for (T record : records) {
586585
String formattedStatement = spec.getStatementFormatter().formatStatement(record);
587-
LOG.info("FINDME SQL: {}", formattedStatement);
588586
try {
589587
statement.executeUpdate(formattedStatement);
590588
connection.commit();

0 commit comments

Comments
 (0)