Errorf logs to ERROR log. Arguments are handled in the manner of fmt.Printf.
(format string, args ...any)
| 921 | |
| 922 | // Errorf logs to ERROR log. Arguments are handled in the manner of fmt.Printf. |
| 923 | func (t testingLog) Errorf(format string, args ...any) { |
| 924 | t.T.Errorf(format, args...) |
| 925 | } |
| 926 | |
| 927 | // Fatal logs to ERROR log. Arguments are handled in the manner of fmt.Print. |
| 928 | // gRPC ensures that all Fatal logs will exit with os.Exit(1). |
no outgoing calls
no test coverage detected