Skip to content

Commit

Permalink
Merge pull request #5046 from jlebon/pr/rofiles-umount-log
Browse files Browse the repository at this point in the history
rust/bwrap: log `fusermount -u` errors to stderr
  • Loading branch information
cgwalters committed Aug 14, 2024
2 parents cd2cfd6 + 044feec commit 1b786a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/src/bwrap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ impl Drop for RoFilesMount {
})
.err()
.map(|e| {
systemd::journal::print(4, &format!("{}", e));
eprintln!("{}", e);
})
.is_none();
if !success {
Expand Down

0 comments on commit 1b786a8

Please sign in to comment.