Skip to content

Commit

Permalink
[core] Optimize logging for expiring partitions (apache#3896)
Browse files Browse the repository at this point in the history
  • Loading branch information
bknbkn authored and wxplovecc committed Aug 6, 2024
1 parent a0c8dd6 commit 24f1416
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ private List<Map<String, String>> doExpire(
Object[] array = strategy.convertPartition(partition.partition());
Map<String, String> partString = strategy.toPartitionString(array);
expired.add(partString);
LOG.info("Expire Partition: {}", partition);
LOG.info("Expire Partition: {}", partString);
}
if (!expired.isEmpty()) {
if (metastoreClient != null) {
Expand Down

0 comments on commit 24f1416

Please sign in to comment.