Skip to content
This repository was archived by the owner on Jan 22, 2025. It is now read-only.

Commit 2bd0f5e

Browse files
committed
Don't use eprintln!()...
1 parent 3472041 commit 2bd0f5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/banking_trace.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ pub fn drop_and_clean_temp_dir_unless_suppressed(temp_dir: TempDir) {
360360
std::env::var("BANKING_TRACE_LEAVE_FILES_FROM_LAST_ITERATION")
361361
.is_ok()
362362
.then(|| {
363-
eprintln!("prevented to remove {:?}", temp_dir.path());
363+
warn!("prevented to remove {:?}", temp_dir.path());
364364
drop(temp_dir.into_path());
365365
});
366366
}

0 commit comments

Comments
 (0)