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)