cli: simplify log message on init call

This commit is contained in:
Malte Poll 2024-05-15 15:40:44 +02:00
parent 36a827056f
commit 5079afdbcd

View File

@ -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 {