We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60a499d commit 51147d4Copy full SHA for 51147d4
pkg/runner/command.go
@@ -54,11 +54,11 @@ func (rc *RunContext) commandHandler(ctx context.Context) common.LineHandler {
54
case "add-path":
55
rc.addPath(ctx, arg)
56
case "debug":
57
- logger.Infof(" \U0001F4AC %s", line)
+ logger.Debugf(" \U0001F4AC %s", line)
58
case "warning":
59
- logger.Infof(" \U0001F6A7 %s", line)
+ logger.Warnf(" \U0001F6A7 %s", line)
60
case "error":
61
- logger.Infof(" \U00002757 %s", line)
+ logger.Errorf(" \U00002757 %s", line)
62
case "add-mask":
63
rc.AddMask(arg)
64
logger.Infof(" \U00002699 %s", "***")
0 commit comments