MINOR: quic: rename "ssl error" trace

SSL status is reported each time quic_conn_io_cb() is finished via a
trace. Change the trace label from "ssl error" to "ssl status". This
allows to search for errors easier without being distracted by this
trace.
This commit is contained in:
Amaury Denoyelle 2024-06-20 17:54:33 +02:00
parent 19b8c1b7cd
commit 3d4baa3c7b

View File

@ -829,7 +829,7 @@ struct task *quic_conn_io_cb(struct task *t, void *context, unsigned int state)
qc = NULL;
}
TRACE_PROTO("ssl error", QUIC_EV_CONN_IO_CB, qc, &st);
TRACE_PROTO("ssl status", QUIC_EV_CONN_IO_CB, qc, &st);
TRACE_LEAVE(QUIC_EV_CONN_IO_CB, qc);
return t;
}