From 4cd70304aab8220e08587d51de5982c6f545e4c6 Mon Sep 17 00:00:00 2001 From: Adam Fisk Date: Tue, 19 Nov 2024 14:04:42 -0700 Subject: [PATCH] Tone down logging when there's no existing instance --- context.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/context.go b/context.go index b3b5e86..eb8d78a 100644 --- a/context.go +++ b/context.go @@ -66,7 +66,7 @@ func (fctx *frontingContext) ConfigureWithHello(pool *x509.CertPool, providers m } if _existing, err := fctx.instance.Get(eventual.DontWait); err != nil { - log.Errorf("Error getting existing instance for %s context: %s", fctx.name, err) + log.Debugf("No existing instance for %s context: %s", fctx.name, err) } else if _existing != nil { existing := _existing.(*fronted) log.Debugf("Closing cache from existing instance for %s context", fctx.name)