aboutsummaryrefslogtreecommitdiff
path: root/src/http/v2/ngx_http_v2_table.c
diff options
context:
space:
mode:
authorMaxim Dounin <mdounin@mdounin.ru>2017-09-14 19:06:06 +0300
committerMaxim Dounin <mdounin@mdounin.ru>2017-09-14 19:06:06 +0300
commit99cc4c72c7c2cdb802c6e6ceb0a0a1f8b115be29 (patch)
tree06b168c2343b6332826bffea818c0c8fed1e527b /src/http/v2/ngx_http_v2_table.c
parentfc1575109e88ccbc7a6d099f15b42781c8471360 (diff)
downloadnginx-99cc4c72c7c2cdb802c6e6ceb0a0a1f8b115be29.tar.gz
nginx-99cc4c72c7c2cdb802c6e6ceb0a0a1f8b115be29.zip
HTTP/2: shortened some debug log messages.
This ensures slightly more readable debug logs on 80-character-wide terminals.
Diffstat (limited to 'src/http/v2/ngx_http_v2_table.c')
-rw-r--r--src/http/v2/ngx_http_v2_table.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/http/v2/ngx_http_v2_table.c b/src/http/v2/ngx_http_v2_table.c
index d4c748ffc..62025c426 100644
--- a/src/http/v2/ngx_http_v2_table.c
+++ b/src/http/v2/ngx_http_v2_table.c
@@ -180,7 +180,7 @@ ngx_http_v2_add_header(ngx_http_v2_connection_t *h2c,
ngx_http_v2_header_t *entry, **entries;
ngx_log_debug2(NGX_LOG_DEBUG_HTTP, h2c->connection->log, 0,
- "http2 add header to hpack table: \"%V: %V\"",
+ "http2 table add: \"%V: %V\"",
&header->name, &header->value);
if (h2c->hpack.entries == NULL) {
@@ -293,7 +293,7 @@ ngx_http_v2_table_account(ngx_http_v2_connection_t *h2c, size_t size)
size += 32;
ngx_log_debug2(NGX_LOG_DEBUG_HTTP, h2c->connection->log, 0,
- "http2 hpack table account: %uz free:%uz",
+ "http2 table account: %uz free:%uz",
size, h2c->hpack.free);
if (size <= h2c->hpack.free) {