Skip to content

Commit d0086d1

Browse files
authored
fix(cli): Send pagination message to stderr (#721)
Signed-off-by: Jose I. Paris <[email protected]>
1 parent 80108a5 commit d0086d1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

app/cli/cmd/workflow_workflow_run_list.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,10 @@ func newWorkflowWorkflowRunListCmd() *cobra.Command {
5959
return nil
6060
}
6161

62-
fmt.Print("Pagination options \n\n")
62+
logger.Info().Msg("Pagination options \n")
63+
6364
if next != "" {
64-
fmt.Printf("--next %s\n", next)
65+
logger.Info().Msgf("--next %s\n", next)
6566
}
6667

6768
return nil

0 commit comments

Comments
 (0)