From 7398194c18e6fa77833aee8b1d448c75f68748fe Mon Sep 17 00:00:00 2001 From: Arden Shackelford Date: Mon, 10 Jun 2024 14:13:50 -0500 Subject: [PATCH] cleanup unnecessary print statement --- .changes/unreleased/Fixed-20240610-141326.yaml | 5 +++++ cmd/use.go | 1 - 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 .changes/unreleased/Fixed-20240610-141326.yaml diff --git a/.changes/unreleased/Fixed-20240610-141326.yaml b/.changes/unreleased/Fixed-20240610-141326.yaml new file mode 100644 index 0000000..f0574e2 --- /dev/null +++ b/.changes/unreleased/Fixed-20240610-141326.yaml @@ -0,0 +1,5 @@ +kind: Fixed +body: Removed print statement in use that caused eval to fail +time: 2024-06-10T14:13:26.525928-05:00 +custom: + Author: Shackelford-Arden diff --git a/cmd/use.go b/cmd/use.go index 5fa9158..41d1c7f 100644 --- a/cmd/use.go +++ b/cmd/use.go @@ -19,7 +19,6 @@ func Use(ctx *cli.Context) error { currentStack := AppConfig.GetCurrentStack() // Get current stacks tokens, if any and cache them - fmt.Printf("Value of cache_auth: %v", AppConfig.CacheAuth) if currentStack != nil && AppConfig.CacheAuth { toCache := cache.GetCacheableValues() updateErr := AppCache.Update(currentStack.Name, toCache)