From fd5c879b4d98028aa01e251153baf18d9a1282ab Mon Sep 17 00:00:00 2001 From: willy tarreau Date: Mon, 1 May 2006 15:28:01 +0200 Subject: [PATCH] [MINOR] print the proxy name on first line during dumps to avoid confusion. --- haproxy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haproxy.c b/haproxy.c index 138b758ca4..5b96681712 100644 --- a/haproxy.c +++ b/haproxy.c @@ -6348,7 +6348,7 @@ void sig_dump_state(int sig) { while (p) { struct server *s = p->srv; - send_log(p, LOG_NOTICE, "SIGUP received, dumping servers states.\n"); + send_log(p, LOG_NOTICE, "SIGUP received, dumping servers states for proxy %s.\n", p->id); while (s) { if (s->state & SRV_RUNNING) { snprintf(trash, sizeof(trash), -- 2.47.2