From 39088a780682b71b8c37760fc7e1ab2a4c01bd24 Mon Sep 17 00:00:00 2001 From: William Lallemand Date: Wed, 16 Apr 2025 14:51:18 +0200 Subject: [PATCH] MINOR: acme: add a success message to the logs Add a success log when the certificate was updated. Ex: acme: foobar.pem: Successful update of the certificate. --- src/acme.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/acme.c b/src/acme.c index dff193930..86ffd5b78 100644 --- a/src/acme.c +++ b/src/acme.c @@ -625,6 +625,8 @@ int acme_update_certificate(struct task *task, struct acme_ctx *ctx, char **errm /* insert everything and remove the previous objects */ ckch_store_replace(old_ckchs, new_ckchs); + send_log(NULL, LOG_NOTICE,"acme: %s: Successful update of the certificate.\n", ctx->store->path); + ret = 0; error: -- 2.47.2