add logging to test suite

This commit is contained in:
Jonas Kruckenberg 2022-11-16 12:36:08 +01:00
parent bf2809393a
commit 17df08297c
7 changed files with 172 additions and 8 deletions

View file

@ -19,7 +19,7 @@ pub async fn platform() -> anyhow::Result<()> {
pub async fn tempdir() -> anyhow::Result<()> {
let tempdir = os::tempdir().await?;
log::debug!("{:?}", tempdir);
log::info!("{:?}", tempdir);
Ok(())
}