Errorf logs to the ERROR log. Arguments are handled in the manner of fmt.Printf.
(format string, args ...any)
| 75 | |
| 76 | // Errorf logs to the ERROR log. Arguments are handled in the manner of fmt.Printf. |
| 77 | func Errorf(format string, args ...any) { |
| 78 | internal.LoggerV2Impl.Errorf(format, args...) |
| 79 | } |
| 80 | |
| 81 | // Errorln logs to the ERROR log. Arguments are handled in the manner of fmt.Println. |
| 82 | func Errorln(args ...any) { |