diff options
author | Daniel Stenberg <daniel@haxx.se> | 2015-03-07 10:55:37 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-03-07 10:55:37 +0100 |
commit | df28af8f39dee6780c6fa354d695c8ce8d10c58e (patch) | |
tree | 65cf8d575e38e69c42881e1d3f474f7b04659e0f /lib | |
parent | 44ffe2705686141abeafc1324a43d7d74faaf626 (diff) |
http2: make the info-message about receiving HTTP2 headers debug-only
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 */ |