From c567aee10d3d9b61771d7c9c4688f795b64f4f19 Mon Sep 17 00:00:00 2001 From: ale <ale@incal.net> Date: Tue, 7 May 2024 14:04:44 +0100 Subject: [PATCH] Add a debugging statement for Authorization objects --- acme.go | 1 + 1 file changed, 1 insertion(+) diff --git a/acme.go b/acme.go index a459413..4a344d9 100644 --- a/acme.go +++ b/acme.go @@ -213,6 +213,7 @@ func (a *ACME) verifyAll(ctx context.Context, client *acme.Client, c *certConfig return nil, fmt.Errorf("challenge type '%s' is not available", chal.Type) } + log.Printf("attempting fulfillment for %q (identifier: %+v)", c.Names, z.Identifier) for _, domain := range c.Names { cleanup, err := v.Fulfill(ctx, client, domain, chal) if err != nil { -- GitLab