| 27 | ) |
| 28 | |
| 29 | type spanLogger struct { |
| 30 | logger *zap.Logger |
| 31 | span trace.Span |
| 32 | spanFields []zapcore.Field |
| 33 | } |
| 34 | |
| 35 | func (sl spanLogger) Debug(msg string, fields ...zapcore.Field) { |
| 36 | sl.logToSpan("debug", msg, fields...) |
nothing calls this directly
no outgoing calls
no test coverage detected