Change test output to use debug!()

This commit is contained in:
Matthias Beyer 2018-11-01 11:50:57 +01:00
parent f01a262bdf
commit 83876b7c2c

View file

@ -191,7 +191,7 @@ mod tests {
}
let id = PathBuf::from(format!("category/{}", category_name));
println!("Trying: {:?}", id);
debug!("Trying: {:?}", id);
let category = store.get(id);
assert!(category.is_ok(), format!("Expected Ok(_), got: {:?}", category));