Skip to content

Commit

Permalink
refactor: log deleted objects (#20086)
Browse files Browse the repository at this point in the history
  • Loading branch information
zwang28 authored Jan 9, 2025
1 parent 87eac4f commit 8b5caba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/meta/src/hummock/manager/gc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ impl HummockManager {
break;
}
let delete_batch: HashSet<_> = objects_to_delete.drain(..batch_size).collect();
tracing::debug!(?delete_batch, "Attempt to delete objects.");
tracing::info!(?delete_batch, "Attempt to delete objects.");
let deleted_object_ids = delete_batch.clone();
self.gc_manager
.delete_objects(delete_batch.into_iter())
Expand Down

0 comments on commit 8b5caba

Please sign in to comment.