From 5079afdbcd1076e90a02129966a14ae5e9e63b8b Mon Sep 17 00:00:00 2001 From: Malte Poll <1780588+malt3@users.noreply.github.com> Date: Wed, 15 May 2024 15:40:44 +0200 Subject: [PATCH] cli: simplify log message on init call --- internal/constellation/applyinit.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/constellation/applyinit.go b/internal/constellation/applyinit.go index e451e4fd8..9b34abf77 100644 --- a/internal/constellation/applyinit.go +++ b/internal/constellation/applyinit.go @@ -90,7 +90,7 @@ func (a *Applier) Init( } // Perform the RPC - a.log.Debug("Initialization call", "endpoint", doer.endpoint, "kmsURI", doer.req.KmsUri, "storageURI", doer.req.StorageUri) + a.log.Debug("Initialization call", "endpoint", doer.endpoint) a.spinner.Start("Connecting ", false) retrier := retry.NewIntervalRetrier(doer, 30*time.Second, serviceIsUnavailable) if err := retrier.Do(ctx); err != nil {