Skip to content

Commit

Permalink
[minor][mysql] database-filter remove unnecessary logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Paddy0523 committed Aug 9, 2023
1 parent 72eb4ea commit 4812272
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,6 @@ public static List<TableId> listTables(JdbcConnection jdbc, RelationalTableFilte
String databaseName = rs.getString(1);
if (tableFilters.databaseFilter().test(databaseName)) {
databaseNames.add(databaseName);
LOG.info(
"\t including database '{}' for further processing",
databaseName);
} else {
LOG.info("\t '{}' is filtered out of database capturing", databaseName);
}
}
});
Expand Down

0 comments on commit 4812272

Please sign in to comment.