Skip to content

Commit

Permalink
Print each record in another line
Browse files Browse the repository at this point in the history
  • Loading branch information
myOmikron committed Sep 7, 2023
1 parent 3c30284 commit 92ab326
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion leech/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,9 @@ async fn main() -> Result<(), String> {
.await
{
Ok(x) => {
info!("{x:?}")
for entry in x.entries {
info!("{entry:?}");
}
}
Err(err) => {
error!("{err}");
Expand Down

0 comments on commit 92ab326

Please sign in to comment.