mvp i think

main
Bel LaPointe 2023-11-29 06:07:02 -07:00
parent d7a7a404ee
commit faa884a645
1 changed files with 4 additions and 1 deletions

View File

@ -89,7 +89,10 @@ fn log(f: &String, since: &Option<String>) -> Result<(), String> {
if curr.xs.len() > 0 {
result.push(curr.clone());
}
println!("{}", serde_yaml::to_string(&result).unwrap());
for log in result {
println!("{}", serde_yaml::to_string(&log).unwrap());
}
Ok(())
}