Remove logging statements

This commit is contained in:
jaina heartles 2022-12-09 03:39:49 -08:00
parent a035b08f83
commit 9d38aaec38
1 changed files with 0 additions and 2 deletions

View File

@ -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 {