Commit 78879ff816ff459b82f90bc39056b2ed78a0993b

Baptiste 2024-08-03T12:52:30

deleted useless printf

1
2
3
4
5
6
7
8
9
10
11
12
13
14
diff --git a/http/http_response.c b/http/http_response.c
index 248a042..5cd0e1b 100644
--- a/http/http_response.c
+++ b/http/http_response.c
@@ -79,9 +79,6 @@ sw http_response_buf_write (const s_http_response *response,
     tag_message.data.str = response->message;
     tag_message.data.str.free.p = NULL;
   }
-  err_write_1("message: ");
-  err_inspect_tag(&tag_message);
-  err_write_1("\n");
   if ((r = buf_write_str(buf, &tag_message.data.str)) < 0)
     return r;
   result += r;