You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test(dogfood): declare OS_REGISTRY_LOG=warn in the suite's own vitest harness (#13985)
The dogfood gate writes 66,976 lines to stdout per full run; 39,738 of them
(94.9% of everything it writes through `console`) are the SchemaRegistry's
per-item `[Registry] Registered …` lines, emitted once per registered item
per app boot across ~130 boots of the real example apps.
`OS_REGISTRY_LOG` is `@objectstack/objectql`'s own published seam for that
verbosity (`SchemaRegistryOptions.logLevel` / `REGISTRY_LOG_LEVELS`). At
`warn` the registry's `log()` returns before writing, while the ADR-0005
`[Registry] Collision` diagnostics — a bare `console.warn` the level never
gates — still surface.
The engine's shipped default is untouched, and no library code learns what a
test runner is: the request lives in the harness, declaratively, where the
test author can see it.
Claude-Session: https://claude.ai/code/session_01F3jdziLbAPGeceVNmSox5L
Co-authored-by: Claude <noreply@anthropic.com>
0 commit comments