From 979841d76245b3f4200804de1201b0874b54cee3 Mon Sep 17 00:00:00 2001 From: Devon Bautista Date: Thu, 17 Apr 2025 09:47:29 -0600 Subject: [PATCH] fix: clarify that override is temporary --- cmd/collect.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/collect.go b/cmd/collect.go index d816567..175680b 100644 --- a/cmd/collect.go +++ b/cmd/collect.go @@ -83,10 +83,10 @@ var CollectCmd = &cobra.Command{ // flags is passed. The expectation is that if the flag is specified // on the command line, it should be used. if username != "" { - log.Info().Msg("--username passed, overriding all usernames with value") + log.Info().Msg("--username passed, temporarily overriding all usernames from secret store with value") } if password != "" { - log.Info().Msg("--password passed, overriding all passwords with value") + log.Info().Msg("--password passed, temporarily overriding all passwords from secret store with value") } switch s := store.(type) { case *secrets.StaticStore: