Skip to content

Commit

Permalink
add more details to log
Browse files Browse the repository at this point in the history
  • Loading branch information
Will-Lo committed Oct 21, 2024
1 parent d4e60be commit e736bab
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,8 @@ protected HiveDataset computeNext() {
Table table = client.get().getTable(dbAndTable.getDb(), dbAndTable.getTable());
if ((tableFilter.isPresent() && !tableFilter.get().apply(table))
|| !shouldAllowTableLocation(tableFolderAllowlistRegex, table)) {
log.info("Ignoring table {} as its underlying location does not part of allowlist regex {}", dbAndTable, tableFolderAllowlistRegex);
log.info("Ignoring table {} as its underlying location {} does not part of allowlist regex {}", dbAndTable,
table.getSd().getLocation(), tableFolderAllowlistRegex);
continue;
}

Expand Down

0 comments on commit e736bab

Please sign in to comment.