(format string, args ...interface{})
| 3453 | } |
| 3454 | |
| 3455 | func (g *grpclogFaker) Fatalf(format string, args ...interface{}) { |
| 3456 | g.logger.Error(fmt.Sprintf(format, args...)) |
| 3457 | os.Exit(1) |
| 3458 | } |
| 3459 | |
| 3460 | func (g *grpclogFaker) Fatalln(args ...interface{}) { |
| 3461 | g.logger.Error(fmt.Sprintln(args...)) |