Skip to content

Commit

Permalink
remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
MicaiahReid committed Oct 15, 2023
1 parent 6eab1b9 commit 9189141
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion components/chainhook-cli/src/archive/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ pub async fn download_tsv_file(config: &Config) -> Result<(), String> {
match decoder.read(&mut buffer) {
Ok(0) => break,
Ok(n) => {
println!("bytes read: {}", n);
if let Err(e) = file.write_all(&buffer[..n]) {
let err = format!("unable to update compressed archive: {}", e.to_string());
return Err(err);
Expand Down

0 comments on commit 9189141

Please sign in to comment.