Remove logging statements
This commit is contained in:
parent
a035b08f83
commit
9d38aaec38
1 changed files with 0 additions and 2 deletions
|
@ -95,7 +95,6 @@ pub fn ResponseStream(comptime BaseWriter: type) type {
|
|||
}
|
||||
|
||||
fn flushChunk(self: *Self) Error!void {
|
||||
std.log.debug("flushing chunk {}", .{self.buffer_pos});
|
||||
try writeChunk(self.base_writer, self.buffer[0..self.buffer_pos]);
|
||||
self.buffer_pos = 0;
|
||||
}
|
||||
|
@ -146,7 +145,6 @@ pub fn ResponseStream(comptime BaseWriter: type) type {
|
|||
}
|
||||
|
||||
pub fn finish(self: *Self) Error!void {
|
||||
std.log.debug("finishing", .{});
|
||||
if (!self.chunked) {
|
||||
try self.flushBodyUnchunked();
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue