diff options
author | Daniel Stenberg <daniel@haxx.se> | 2018-03-10 23:56:21 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2018-03-10 23:56:21 +0100 |
commit | 019aa722aa82e8642254f3e835992bc425ed3e19 (patch) | |
tree | 772bacfbb98df3355d31900552a1e09e8b759516 /lib/http2.c | |
parent | 8b754c430b9a4c51aa606c687ee5014faf7c7b06 (diff) |
http2: verbose output new MAX_CONCURRENT_STREAMS values
... as it is interesting for many users.
Diffstat (limited to 'lib/http2.c')
-rw-r--r-- | lib/http2.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/http2.c b/lib/http2.c index d641d94fe..ec1b7cf91 100644 --- a/lib/http2.c +++ b/lib/http2.c @@ -542,7 +542,8 @@ static int on_frame_recv(nghttp2_session *session, const nghttp2_frame *frame, if(max_conn != httpc->settings.max_concurrent_streams) { /* only signal change if the value actually changed */ infof(conn->data, - "Connection state changed (MAX_CONCURRENT_STREAMS updated)!\n"); + "Connection state changed (MAX_CONCURRENT_STREAMS == %d)!\n", + httpc->settings.max_concurrent_streams); Curl_multi_connchanged(conn->data->multi); } } |