Skip to content

Commit

Permalink
Tone down logging when there's no existing instance
Browse files Browse the repository at this point in the history
  • Loading branch information
myleshorton committed Nov 19, 2024
1 parent e357a92 commit 4cd7030
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion context.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 4cd7030

Please sign in to comment.