fmt.Errorf
fmt.Errorf FORMAT [INPUT]
Log an ERROR from a template.
fmt.Erroridf
fmt.Erroridf ID FORMAT [INPUT]
Log a suppressible ERROR from a template.
fmt.Print
fmt.Print INPUT
Prints the default representation of the given arguments using the standard `fmt.Print` function.
fmt.Printf
fmt.Printf FORMAT [INPUT]
Formats a string using the standard `fmt.Sprintf` function.
fmt.Println
fmt.Println INPUT
Prints the default representation of the given argument using the standard `fmt.Print` function and enforces a line break.
fmt.Warnf
fmt.Warnf FORMAT [INPUT]
Log a WARNING from a template.
fmt.Warnidf
fmt.Warnidf ID FORMAT [INPUT]
Log a suppressible WARNING from a template.