Skip to content

Commit

Permalink
Fix logging issue
Browse files Browse the repository at this point in the history
  • Loading branch information
marlonbaeten committed Jan 4, 2024
1 parent 0e03191 commit c1be7c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion memory-serve/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ impl MemoryServe {
"serving {} {} -> {} bytes (compressed)",
asset.route,
bytes.len(),
asset.brotli_bytes.is_empty()
asset.brotli_bytes.len()
);
} else {
info!("serving {} {} bytes", asset.route, bytes.len());
Expand Down

0 comments on commit c1be7c2

Please sign in to comment.