Skip to content

Commit

Permalink
feat: adding event data to csv output
Browse files Browse the repository at this point in the history
  • Loading branch information
FranticTyping committed Jul 7, 2022
1 parent 0c76b48 commit 67b4e58
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -628,8 +628,10 @@ pub fn print_csv(
cells.push(v);
}
None => {
"<see raw event>".hash(&mut hasher);
cells.push("<see raw event>".to_owned());
let yaml = serde_yaml::to_string(&tau_to_json(value))
.expect("could not get yaml");
yaml.hash(&mut hasher);
cells.push(yaml);
}
}
continue;
Expand Down

0 comments on commit 67b4e58

Please sign in to comment.