# HG changeset patch # User Roman Arutyunyan # Date 1593696816 -10800 # Node ID a7f64438aa3c7a7dddf546e602ff87621bd7e458 # Parent c9538aef3211f6f8c686a2acd5feb3e360436c8c HTTP/3: downgraded literal size error level to NGX_LOG_INFO. Now it's similar to HTTP/2. diff --git a/src/http/v3/ngx_http_v3_parse.c b/src/http/v3/ngx_http_v3_parse.c --- 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 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; }