diff --git a/scw/env.go b/scw/env.go index d73bdd52d..6cb928da9 100644 --- a/scw/env.go +++ b/scw/env.go @@ -107,14 +107,14 @@ func LoadEnvProfile() *Profile { func getEnv(upToDateKey string, deprecatedKeys ...string) (string, string, bool) { value, exist := os.LookupEnv(upToDateKey) if exist { - logger.Infof("reading value from %s", upToDateKey) + logger.Debugf("reading value from %s", upToDateKey) return value, upToDateKey, true } for _, key := range deprecatedKeys { value, exist := os.LookupEnv(key) if exist { - logger.Infof("reading value from %s", key) + logger.Debugf("reading value from %s", key) logger.Warningf("%s is deprecated, please use %s instead", key, upToDateKey) return value, key, true }