Info logs and adds a trace event if channelz is on.
(l grpclog.DepthLoggerV2, e Entity, args ...any)
| 28 | |
| 29 | // Info logs and adds a trace event if channelz is on. |
| 30 | func Info(l grpclog.DepthLoggerV2, e Entity, args ...any) { |
| 31 | AddTraceEvent(l, e, 1, &TraceEvent{ |
| 32 | Desc: fmt.Sprint(args...), |
| 33 | Severity: CtInfo, |
| 34 | }) |
| 35 | } |
| 36 | |
| 37 | // Infof logs and adds a trace event if channelz is on. |
| 38 | func Infof(l grpclog.DepthLoggerV2, e Entity, format string, args ...any) { |
no test coverage detected