add dmesg to mkdir
This commit is contained in:
parent
859041351f
commit
3d7f3bdc60
|
@ -77,6 +77,10 @@ impl Mount {
|
||||||
"could not check if path exists: {path}",
|
"could not check if path exists: {path}",
|
||||||
path = self.target.display()
|
path = self.target.display()
|
||||||
))? {
|
))? {
|
||||||
|
dmesg(format!(
|
||||||
|
"Making directory: {target}",
|
||||||
|
target = self.target.display()
|
||||||
|
));
|
||||||
syscall::mkdir(&self.target)?;
|
syscall::mkdir(&self.target)?;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue