Skip to content

Commit

Permalink
Removed Debug Info
Browse files Browse the repository at this point in the history
  • Loading branch information
amigin committed Dec 19, 2024
1 parent ab760d9 commit 95a99e1
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/fl_url.rs
Original file line number Diff line number Diff line change
Expand Up @@ -382,13 +382,10 @@ impl FlUrl {

self.headers.add("Content-Encoding", "gzip");

println!("Before compression: {}", body.len());

let mut encoder = GzEncoder::new(Vec::new(), Compression::default());
encoder.write_all(body.as_slice()).unwrap();
let result = encoder.finish().unwrap();

println!("After compression: {}", result.len());
result
}

Expand Down

0 comments on commit 95a99e1

Please sign in to comment.