Skip to content

Commit 00c0e40

Browse files
committed
check this
1 parent de270f7 commit 00c0e40

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cmd/support.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ package cmd
22

33
import (
44
_ "embed"
5-
"fmt"
65

6+
log "github.com/charmbracelet/log"
77
"github.com/spf13/cobra"
88

99
"github.com/cloudposse/atmos/pkg/utils"
@@ -22,9 +22,9 @@ var supportCmd = &cobra.Command{
2222
SilenceUsage: true,
2323
SilenceErrors: true,
2424
RunE: func(cmd *cobra.Command, args []string) error {
25-
fmt.Println("________________________________________________________________________________")
25+
log.Info("__________________________________________________")
2626
utils.PrintfMarkdown("%s", supportMarkdown)
27-
fmt.Println("________________________________________________________________________________")
27+
log.Info("__________________________________________________")
2828
return nil
2929
},
3030
}

0 commit comments

Comments
 (0)