| 15 | var _, slogTestFile, _, _ = runtime.Caller(0) |
| 16 | |
| 17 | type fakeSink struct { |
| 18 | entries []slog.SinkEntry |
| 19 | |
| 20 | syncs int |
| 21 | } |
| 22 | |
| 23 | func (s *fakeSink) LogEntry(_ context.Context, e slog.SinkEntry) { |
| 24 | s.entries = append(s.entries, e) |
nothing calls this directly
no outgoing calls
no test coverage detected