Errorln implements grpclog.LoggerV2.
(args ...interface{})
| 206 | |
| 207 | // Errorln implements grpclog.LoggerV2. |
| 208 | func (l *Logger) Errorln(args ...interface{}) { |
| 209 | if l.levelEnabler.Enabled(zapcore.ErrorLevel) { |
| 210 | l.delegate.Error(sprintln(args)) |
| 211 | } |
| 212 | } |
| 213 | |
| 214 | // Errorf implements grpclog.LoggerV2. |
| 215 | func (l *Logger) Errorf(format string, args ...interface{}) { |