add missed debug event

This commit is contained in:
yggverse 2025-08-08 02:44:21 +03:00
parent edc501e523
commit 52a4ff2d44

View file

@ -105,7 +105,8 @@ impl Preload {
bail!("Output directory `{}` is file", p.to_string_lossy())
}
if is_create && !p.exists() {
fs::create_dir(&p)?
fs::create_dir(&p)?;
log::debug!("create tmp directory `{}`", p.to_string_lossy())
}
Ok(p)
}