Skip to content

Commit a0bd34b

Browse files
Add Noticef() to actions_root.go (#48)
add Noticef() to actions_root.go resolves #47
1 parent 9bc1508 commit a0bd34b

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

actions_root.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,12 @@ func Debugf(msg string, args ...any) {
104104
defaultAction.Debugf(msg, args...)
105105
}
106106

107+
// Noticef prints a notice-level message. The arguments follow the standard
108+
// Printf arguments.
109+
func Noticef(msg string, args ...any) {
110+
defaultAction.Noticef(msg, args...)
111+
}
112+
107113
// Errorf prints a error-level message. The arguments follow the standard Printf
108114
// arguments.
109115
func Errorf(msg string, args ...any) {

0 commit comments

Comments
 (0)