diff src/event/quic/ngx_event_quic_migration.h @ 8997:fab36e4abf83 quic

QUIC: got rid of hash symbol in backup and logging. Now all objectes with sequence number (i.e. sockets, connection ids and paths) are logged as "foo seq:N".
author Vladimir Homutov <vl@nginx.com>
date Fri, 28 Jan 2022 14:57:33 +0300
parents 1e2f4e9c8195
children bba136612fe4
line wrap: on
line diff
--- a/src/event/quic/ngx_event_quic_migration.h
+++ b/src/event/quic/ngx_event_quic_migration.h
@@ -19,7 +19,7 @@
 
 #define ngx_quic_path_dbg(c, msg, path)                                       \
     ngx_log_debug7(NGX_LOG_DEBUG_EVENT, c->log, 0,                            \
-                   "quic path#%uL %s sent:%O recvd:%O state:%s%s%s",          \
+                   "quic path seq:%uL %s sent:%O recvd:%O state:%s%s%s",      \
                    path->seqnum, msg, path->sent, path->received,             \
                    path->limited ? "L" : "", path->validated ? "V": "N",      \
                    path->validating ? "R": "");