MINOR: mux-quic: adjust traces on stream init

Adjust traces on qcc_init_stream_remote() : replace "opening" by
"initializing" to avoid confusion with traces dealing with OPEN stream
state.
This commit is contained in:
Amaury Denoyelle 2022-08-16 11:13:45 +02:00
parent bf3c208760
commit fd79ddb2d6

View File

@ -615,8 +615,8 @@ static struct qcs *qcc_init_stream_remote(struct qcc *qcc, uint64_t id)
BUG_ON(id < *largest);
while (id >= *largest) {
const char *str = *largest < id ? "opening intermediary stream" :
"opening remote stream";
const char *str = *largest < id ? "initializing intermediary remote stream" :
"initializing remote stream";
qcs = qcs_new(qcc, *largest, type);
if (!qcs) {