Skip to content

Commit 8886f86

Browse files
committed
chore: replace println! statements with tracing
1 parent 9b67d69 commit 8886f86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ impl MountTable {
168168
let flags = UnmountFlags::DETACH;
169169
// why is it not unmounting properly
170170
self.mounts.drain(..).rev().for_each(|mount| {
171-
println!("Unmounting {:?}", mount.target_path());
171+
tracing::trace!("Unmounting {:?}", mount.target_path());
172172
// this causes ENOENT when not chrooting properly
173173
mount.unmount(flags).unwrap();
174174
drop(mount);

0 commit comments

Comments
 (0)