From 3daf4498f32429497b091f8c1a47a40be9bcffa8 Mon Sep 17 00:00:00 2001 From: Christopher Faulet Date: Thu, 4 Jun 2026 21:50:11 +0200 Subject: [PATCH] MINOR: check: Don't dump buffers state in check traces for external checks In healthcheck trace messages, there is no reason to dump the in/out buffers state for external checks. So let's skip this part in that case. --- src/check.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/check.c b/src/check.c index f3df19077..1e166322a 100644 --- a/src/check.c +++ b/src/check.c @@ -232,6 +232,9 @@ static void check_trace(enum trace_level level, uint64_t mask, chunk_appendf(&trace_buf, " sc=%p(0x%08x)", check->sc, check->sc->flags); } + if (check->type != PR_O2_TCPCHK_CHK) + return; + if (mask & CHK_EV_TCPCHK) { const char *type;