From 39280cb8388b1401747f29816f9cb79ee1a81c6b Mon Sep 17 00:00:00 2001 From: Googlom <36107508+Googlom@users.noreply.github.com> Date: Tue, 2 Sep 2025 14:07:40 +0300 Subject: [PATCH] fix(logging): shorten secret not resolved message and attach param.name to it (#5467) --- pkg/config/vault.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/config/vault.go b/pkg/config/vault.go index 72cf7e2ac..c2005bffd 100644 --- a/pkg/config/vault.go +++ b/pkg/config/vault.go @@ -192,7 +192,7 @@ func resolveVaultReference(ref *ResourceReference, config *StepConfig, client Va } } if secretValue == nil { - log.Entry().Info("The secret could not be resolved from Vault. Please check if the secret is available via configured paths.") + log.Entry().WithField("parameter", param.Name).Info("Secret not found in Vault at configured paths.") } }