Skip to content

Commit

Permalink
Add Noticef() to actions_root.go (#48)
Browse files Browse the repository at this point in the history
add Noticef() to actions_root.go

resolves #47
  • Loading branch information
ashutoshgngwr authored Jul 28, 2022
1 parent 9bc1508 commit a0bd34b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions actions_root.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,12 @@ func Debugf(msg string, args ...any) {
defaultAction.Debugf(msg, args...)
}

// Noticef prints a notice-level message. The arguments follow the standard
// Printf arguments.
func Noticef(msg string, args ...any) {
defaultAction.Noticef(msg, args...)
}

// Errorf prints a error-level message. The arguments follow the standard Printf
// arguments.
func Errorf(msg string, args ...any) {
Expand Down

0 comments on commit a0bd34b

Please sign in to comment.