From 63062a36db36344af611807c6fe9316ae8601258 Mon Sep 17 00:00:00 2001 From: Joshua Krstic Date: Mon, 2 Sep 2024 22:33:40 -0700 Subject: [PATCH] Reword certTableOptions log.Warning message for when the existing cert fails to validate --- validate/validate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/validate/validate.go b/validate/validate.go index e450c65..5a67c2d 100644 --- a/validate/validate.go +++ b/validate/validate.go @@ -655,7 +655,7 @@ func certTableOptions(attestation *spb.Attestation, options map[string]*CertEntr if opt.Kind == CertEntryRequire { return err } - logger.Warningf("Missing cert entry for %s", key) + logger.Warningf("Missing or invalid cert entry for %s", key) } } return nil