Skip to content

Commit

Permalink
use logrus to print to user
Browse files Browse the repository at this point in the history
  • Loading branch information
KellyMerrick committed Jan 7, 2025
1 parent d0deedd commit 53f93fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action/pipeline/exec.go
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ func (c *Config) Exec(client compiler.Engine) error {
// print and remove steps
if len(stepsToRemove) > 0 {
for _, stepName := range stepsToRemove {
fmt.Println("skip step: ", stepName)
logrus.Info("skipping step: ", stepName)
}

if err := skipSteps(_pipeline, stepsToRemove); err != nil {
Expand Down

0 comments on commit 53f93fa

Please sign in to comment.