From f40defae7fa78c47213c8f07fc2853c3d89b83ae Mon Sep 17 00:00:00 2001 From: William Lallemand Date: Wed, 31 Jan 2024 22:00:55 +0100 Subject: [PATCH] WIP/MINOR: startup: add a "Configuration loaded." message Add a "Configuration loaded." message will should be emitted when everything is ready. --- src/haproxy.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/haproxy.c b/src/haproxy.c index 2894cf0aba..f400915c36 100644 --- a/src/haproxy.c +++ b/src/haproxy.c @@ -3966,6 +3966,7 @@ int main(int argc, char **argv) /* when multithreading we need to let only the thread 0 handle the signals */ haproxy_unblock_signals(); + ha_notice("Configuration loaded.\n"); /* Finally, start the poll loop for the first thread */ run_thread_poll_loop(&ha_thread_info[0]);