aboutsummaryrefslogtreecommitdiff
path: root/src/http/v3/ngx_http_v3_parse.c
diff options
context:
space:
mode:
authorRoman Arutyunyan <arut@nginx.com>2020-07-02 16:33:36 +0300
committerRoman Arutyunyan <arut@nginx.com>2020-07-02 16:33:36 +0300
commit86e287a2de91dfc0c7f6acc4220c15debd40a74d (patch)
tree206cca895c24f6ae66c6a95318c88371752603dc /src/http/v3/ngx_http_v3_parse.c
parenta687d08062d8cb029ab82249aa55833cf44be3ce (diff)
downloadnginx-86e287a2de91dfc0c7f6acc4220c15debd40a74d.tar.gz
nginx-86e287a2de91dfc0c7f6acc4220c15debd40a74d.zip
HTTP/3: downgraded literal size error level to NGX_LOG_INFO.
Now it's similar to HTTP/2.
Diffstat (limited to 'src/http/v3/ngx_http_v3_parse.c')
-rw-r--r--src/http/v3/ngx_http_v3_parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/v3/ngx_http_v3_parse.c b/src/http/v3/ngx_http_v3_parse.c
index bd91c5b02..b50b21618 100644
--- a/src/http/v3/ngx_http_v3_parse.c
+++ b/src/http/v3/ngx_http_v3_parse.c
@@ -446,7 +446,7 @@ ngx_http_v3_parse_literal(ngx_connection_t *c, ngx_http_v3_parse_literal_t *st,
v3cf = ngx_http_v3_get_module_srv_conf(c, ngx_http_v3_module);
if (n > v3cf->max_field_size) {
- ngx_log_error(NGX_LOG_ERR, c->log, 0,
+ ngx_log_error(NGX_LOG_INFO, c->log, 0,
"client exceeded http3_max_field_size limit");
return NGX_ERROR;
}