Skip to content

Commit

Permalink
output path on remove
Browse files Browse the repository at this point in the history
  • Loading branch information
lijunwangs committed Feb 5, 2025
1 parent 76ba9b8 commit 6436be0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions accounts-db/src/append_vec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,7 @@ impl Drop for AppendVec {
if self.remove_file_on_drop.load(Ordering::Acquire) {
// If we're reopening in readonly mode, we don't delete the file. See
// AppendVec::reopen_as_readonly.
info!("Removing appendvev file {:?}", self.path);
if let Err(_err) = remove_file(&self.path) {
// promote this to panic soon.
// disabled due to many false positive warnings while running tests.
Expand Down

0 comments on commit 6436be0

Please sign in to comment.