]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
MINOR: quic: rename "ssl error" trace
authorAmaury Denoyelle <adenoyelle@haproxy.com>
Thu, 20 Jun 2024 15:54:33 +0000 (17:54 +0200)
committerAmaury Denoyelle <adenoyelle@haproxy.com>
Mon, 8 Jul 2024 07:38:35 +0000 (09:38 +0200)
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.

src/quic_conn.c

index b3edc99fedb6b008ac48a4a265e52f1e4b87f001..680158cdb3a50b652ab243f343aceabb8c557dbd 100644 (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;
 }