From cdf37a53b3f1cfce2440a4c1fa8f1e27c9ef5ace Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 25 Feb 2022 11:13:49 +0100 Subject: [PATCH] quiche: remove two leftover debug infof() outputs --- lib/vquic/quiche.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/vquic/quiche.c b/lib/vquic/quiche.c index ea3a66c278..132eef98a5 100644 --- a/lib/vquic/quiche.c +++ b/lib/vquic/quiche.c @@ -604,7 +604,6 @@ static ssize_t h3_stream_recv(struct Curl_easy *data, while(recvd < 0) { int64_t s = quiche_h3_conn_poll(qs->h3c, qs->conn, &ev); - infof(data, "quiche_h3_conn_poll: %ld", s); if(s < 0) /* nothing more to do */ break; @@ -698,7 +697,6 @@ static ssize_t h3_stream_send(struct Curl_easy *data, sent = len; } else { - H3BUGF(infof(data, "Pass on %zd body bytes to quiche", len)); sent = quiche_h3_send_body(qs->h3c, qs->conn, stream->stream3_id, (uint8_t *)mem, len, FALSE); if(sent == QUICHE_H3_ERR_DONE) { -- 2.47.3