diff --git a/cmd/fetch.go b/cmd/fetch.go index 8eb504ef1..50162a93c 100644 --- a/cmd/fetch.go +++ b/cmd/fetch.go @@ -1,6 +1,7 @@ package cmd import ( + "fmt" "log" "path/filepath" @@ -24,6 +25,7 @@ func Fetch(ctx *cli.Context) error { if ctx.Bool("all") { if len(args) > 0 { trackID := args[0] + fmt.Printf("\nFetching all problems for the %s track...\n\n", trackID) p, err := client.FetchAll(trackID) if err != nil { log.Fatal(err)