We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4444461 commit 4cf4c45Copy full SHA for 4cf4c45
src/server/encode.rs
@@ -165,12 +165,10 @@ impl Encoder {
165
Some(body_len) => {
166
self.body_len = body_len;
167
self.state = State::EncodeFixedBody;
168
- log::trace!("Server response encoding: fixed length body");
169
return self.encode_fixed_body(cx, buf);
170
}
171
None => {
172
self.state = State::EncodeChunkedBody;
173
- log::trace!("Server response encoding: chunked body");
174
return self.encode_chunked_body(cx, buf);
175
176
};
0 commit comments