Skip to content

Commit

Permalink
fmt and add missing newline to initial column writing step
Browse files Browse the repository at this point in the history
  • Loading branch information
kinrezC committed Oct 10, 2023
1 parent b85a959 commit a9572ba
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions arbiter-core/src/data_collection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ impl EventLogger {
.collect::<Vec<String>>()
.join(",");
file.write_all(values.as_bytes()).await.unwrap();
file.write_all("\n".as_bytes()).await.unwrap();
}
continue;
}
Expand Down

0 comments on commit a9572ba

Please sign in to comment.