(t *testing.T)
| 642 | } |
| 643 | |
| 644 | func testLogger(t *testing.T) slog.Logger { |
| 645 | t.Helper() |
| 646 | return slogtest.Make(t, &slogtest.Options{IgnoreErrors: true}) |
| 647 | } |
| 648 | |
| 649 | // capturedLogger returns a logger that writes structured records to buf, |
| 650 | // for tests that assert on log output instead of audit-table emissions. |
no test coverage detected