Skip to content

Commit

Permalink
add Noticef() to actions_root.go
Browse files Browse the repository at this point in the history
resolves sethvargo#47
  • Loading branch information
ashutoshgngwr committed Jul 28, 2022
1 parent 9bc1508 commit 2bd04d6
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 2bd04d6

Please sign in to comment.