Skip to content

Commit

Permalink
Fix stray logging
Browse files Browse the repository at this point in the history
  • Loading branch information
jupiter committed Apr 4, 2022
1 parent fdd9d7e commit 870115b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "parquet2json"
description = "A command-line tool for converting Parquet to newline-delimited JSON"
version = "1.6.0"
version = "1.6.1"
edition = "2018"
license = "MIT"
authors = ["Pieter Raubenheimer <[email protected]>"]
Expand Down
1 change: 0 additions & 1 deletion src/s3_reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ async fn fetch_range(client: S3Client, url: (String, String), range: Range) -> G
Range::FromEnd(length) => format!("bytes=-{}", length),
};

println!("{}, {}, {}", url.0, url.1, range_str);
let get_obj_req = GetObjectRequest {
bucket: url.0,
key: url.1,
Expand Down

0 comments on commit 870115b

Please sign in to comment.