diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/http2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/http2.c b/lib/http2.c index 8fcc1f12f..89bc57d5e 100644 --- a/lib/http2.c +++ b/lib/http2.c @@ -504,8 +504,8 @@ static int on_header(nghttp2_session *session, const nghttp2_frame *frame, Curl_add_buffer(c->header_recvbuf, value, valuelen); Curl_add_buffer(c->header_recvbuf, "\r\n", 2); - infof(conn->data, "got http2 header: %.*s: %.*s\n", - namelen, name, valuelen, value); + DEBUGF(infof(conn->data, "h2 header: %.*s: %.*s\n", + namelen, name, valuelen, value)); } return 0; /* 0 is successful */ |