diff options
Diffstat (limited to 'src/http/ngx_http_request.c')
-rw-r--r-- | src/http/ngx_http_request.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c index 7a2c78046..f463e674e 100644 --- a/src/http/ngx_http_request.c +++ b/src/http/ngx_http_request.c @@ -395,7 +395,8 @@ ngx_http_quic_stream_handler(ngx_connection_t *c) { ngx_quic_stream_t *qs = c->qs; - printf("quic stream: 0x%lx\n", qs->id); + ngx_log_debug1(NGX_LOG_DEBUG_HTTP, c->log, 0, + "quic stream: 0x%uXL", qs->id); } |