We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de270f7 commit 00c0e40Copy full SHA for 00c0e40
cmd/support.go
@@ -2,8 +2,8 @@ package cmd
2
3
import (
4
_ "embed"
5
- "fmt"
6
+ log "github.com/charmbracelet/log"
7
"github.com/spf13/cobra"
8
9
"github.com/cloudposse/atmos/pkg/utils"
@@ -22,9 +22,9 @@ var supportCmd = &cobra.Command{
22
SilenceUsage: true,
23
SilenceErrors: true,
24
RunE: func(cmd *cobra.Command, args []string) error {
25
- fmt.Println("________________________________________________________________________________")
+ log.Info("__________________________________________________")
26
utils.PrintfMarkdown("%s", supportMarkdown)
27
28
return nil
29
},
30
}
0 commit comments