]> git.kaiwu.me - nginx.git/commitdiff
HTTP/2: unknown frames now logged at info level.
authorMaxim Dounin <mdounin@mdounin.ru>
Mon, 5 Mar 2018 18:35:13 +0000 (21:35 +0300)
committerMaxim Dounin <mdounin@mdounin.ru>
Mon, 5 Mar 2018 18:35:13 +0000 (21:35 +0300)
src/http/v2/ngx_http_v2.c

index d9df0f90e8ccf0a5c422348b39cdbc67a964a8bc..32d766b9ddf79c95d2524e8f68b82349adaf013e 100644 (file)
@@ -783,8 +783,8 @@ ngx_http_v2_state_head(ngx_http_v2_connection_t *h2c, u_char *pos, u_char *end)
                    type, h2c->state.flags, h2c->state.length, h2c->state.sid);
 
     if (type >= NGX_HTTP_V2_FRAME_STATES) {
-        ngx_log_debug1(NGX_LOG_DEBUG_HTTP, h2c->connection->log, 0,
-                       "http2 frame with unknown type %ui", type);
+        ngx_log_error(NGX_LOG_INFO, h2c->connection->log, 0,
+                      "client sent frame with unknown type %ui", type);
         return ngx_http_v2_state_skip(h2c, pos, end);
     }