mirror of
https://github.com/haproxy/haproxy.git
synced 2026-05-21 17:39:39 -04:00
This patch is part of a renaming affecting mux_quic and related files. Naming "qcm" will become the new marker for common mux_quic stuffs, shared both on QUIC and QMux protocols. The final objective is to limit "qmux" naming for stuffs related to the new experimental protocol of the same name. The current patch renames mux_quic traces token to "qcm". This is the only change with external visible impacts in the whole renaming series. However, to preserve compatibility, trace source alias is defined with the older name "qmux". This relies on the previous patch which introduced "alias" new trace_source member.
21 lines
663 B
INI
21 lines
663 B
INI
# This configuration example enables all trace available and output them on
|
|
# stderr.
|
|
# "stream" traces need haproxy to be compiled with -DDEBUG_DEV or -DDEBUG_FULL
|
|
|
|
.if version_atleast(3.1-dev8)
|
|
traces
|
|
trace all sink stderr level developer
|
|
|
|
trace pt verbosity complete start now
|
|
trace h1 verbosity complete start now
|
|
trace h2 verbosity complete start now
|
|
trace fcgi verbosity complete start now
|
|
trace spop verbosity complete start now
|
|
trace stream verbosity complete start now
|
|
trace check verbosity complete start now
|
|
trace applet verbosity complete start now
|
|
trace h3 start now
|
|
trace quic start now
|
|
trace qcm start now
|
|
trace peers start now
|
|
.endif
|