We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b67d69 commit 8886f86Copy full SHA for 8886f86
src/lib.rs
@@ -168,7 +168,7 @@ impl MountTable {
168
let flags = UnmountFlags::DETACH;
169
// why is it not unmounting properly
170
self.mounts.drain(..).rev().for_each(|mount| {
171
- println!("Unmounting {:?}", mount.target_path());
+ tracing::trace!("Unmounting {:?}", mount.target_path());
172
// this causes ENOENT when not chrooting properly
173
mount.unmount(flags).unwrap();
174
drop(mount);
0 commit comments