From b75547cff86b8adc748fa671f736ecd89af211db Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Wed, 25 Jul 2018 23:51:55 -0400 Subject: [PATCH] feat: support --quiet header when showing all environment variables Closes #3229 --- plugins/config/subcommands.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/config/subcommands.go b/plugins/config/subcommands.go index 6f4880ca8..eaae77b8f 100644 --- a/plugins/config/subcommands.go +++ b/plugins/config/subcommands.go @@ -25,7 +25,7 @@ func CommandShow(args []string, global bool, shell bool, export bool, merged boo if appName != "" { contextName = appName } - common.LogInfo2(contextName + " env vars") + common.LogInfo2Quiet(contextName + " env vars") fmt.Println(env.Export(ExportFormatPretty)) } }