From a856ff261a271e32e2488f8f32dd3602eb336d84 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Mon, 12 Aug 2024 20:23:20 +0300 Subject: [PATCH] lib-program-client: Add args to "Created" debug log message --- src/lib-program-client/program-client.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib-program-client/program-client.c b/src/lib-program-client/program-client.c index cfeb860ed1..fbc75c28aa 100644 --- a/src/lib-program-client/program-client.c +++ b/src/lib-program-client/program-client.c @@ -535,7 +535,8 @@ void program_client_init(struct program_client *pclient, pool_t pool, program_client_set_label(pclient, initial_label); - e_debug(pclient->event, "Created"); + e_debug(pclient->event, "Created (args=%s)", + t_strarray_join(args, " ")); } void program_client_set_input(struct program_client *pclient, -- 2.47.3