Skip to content

Commit

Permalink
fix: mention two hidden fields under compressor debug
Browse files Browse the repository at this point in the history
came across this in the wild, wanted to see the value of `data_to_frame_written`
  • Loading branch information
LeoDog896 committed Oct 17, 2024
1 parent f83c5d7 commit 7b562ed
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/frame/compress.rs
Original file line number Diff line number Diff line change
Expand Up @@ -447,6 +447,8 @@ impl<W: fmt::Debug + io::Write> fmt::Debug for FrameEncoder<W> {
.field("is_frame_open", &self.is_frame_open)
.field("content_hasher", &self.content_hasher)
.field("content_len", &self.content_len)
.field("compression_table", &"{ ... }")
.field("data_to_frame_written", &self.data_to_frame_written)
.field("dst", &"[...]")
.field("src", &"[...]")
.field("src_start", &self.src_start)
Expand Down

0 comments on commit 7b562ed

Please sign in to comment.