loggerT is the default logger used by grpclog.
| 119 | |
| 120 | // loggerT is the default logger used by grpclog. |
| 121 | type loggerT struct { |
| 122 | m []*log.Logger |
| 123 | v int |
| 124 | jsonFormat bool |
| 125 | } |
| 126 | |
| 127 | func (g *loggerT) output(severity int, s string) { |
| 128 | sevStr := severityName[severity] |
nothing calls this directly
no outgoing calls
no test coverage detected