From: William Lallemand Date: Fri, 2 May 2025 08:23:42 +0000 (+0200) Subject: MINOR: acme: emit a log when starting X-Git-Tag: v3.2-dev14~17 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2db4848fc804193745eb2f535f12b2bcd54a8aaa;p=thirdparty%2Fhaproxy.git MINOR: acme: emit a log when starting Emit a administrative log when starting the ACME client for a certificate. --- diff --git a/src/acme.c b/src/acme.c index 7a80a6d7a..272642fa0 100644 --- a/src/acme.c +++ b/src/acme.c @@ -2188,6 +2188,8 @@ static int cli_acme_renew_parse(char **args, char *payload, struct appctx *appct MT_LIST_INIT(&ctx->el); MT_LIST_APPEND(&acme_tasks, &ctx->el); + send_log(NULL, LOG_NOTICE, "acme: %s: Starting update of the certificate.\n", ctx->store->path); + task_wakeup(task, TASK_WOKEN_INIT); return 0;