mirror of
https://github.com/nginx/nginx.git
synced 2026-08-04 06:53:10 +00:00
QUIC: log RESET_STREAM final size as a decimal number
Previously, it was logged as a hexadecimal number.
This commit is contained in:
parent
269cdf7806
commit
03baa844a9
1 changed files with 1 additions and 1 deletions
|
|
@ -809,7 +809,7 @@ ngx_quic_log_frame(ngx_log_t *log, ngx_quic_frame_t *f, ngx_uint_t tx)
|
|||
|
||||
case NGX_QUIC_FT_RESET_STREAM:
|
||||
p = ngx_slprintf(p, last, "RESET_STREAM"
|
||||
" id:0x%xL error_code:0x%xL final_size:0x%xL",
|
||||
" id:0x%xL error_code:0x%xL final_size:%uL",
|
||||
f->u.reset_stream.id, f->u.reset_stream.error_code,
|
||||
f->u.reset_stream.final_size);
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue