Skip to content

Commit

Permalink
refactor: remove a large size log
Browse files Browse the repository at this point in the history
  • Loading branch information
hopeyen committed May 7, 2024
1 parent 49d3906 commit 9b61d34
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion file-service/src/file_server/range.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ pub async fn serve_file_range(

let transferred_bytes = crate::metrics::TRANSFERRED_BYTES.with_label_values(&[file_name]);
transferred_bytes.set(length.try_into().unwrap());
tracing::trace!(bytes = tracing::field::debug(&content), "Serving bytes");
Response::builder()
.status(StatusCode::PARTIAL_CONTENT)
.header(CONTENT_RANGE, format!("bytes {}-{}/{}", start, end, length))
Expand Down

0 comments on commit 9b61d34

Please sign in to comment.