Variable: LOG_LEVELS
const LOG_LEVELS: readonly ["trace", "debug", "info", "warning", "error", "fatal"];
Defined in: packages/overcast-core/src/logger.ts:77
Level names, ordered least → most severe. These are LogTape's own names, so
they pass straight through to it with no translation step. Note warning,
not warn — the method is still Logger.warn.
To silence logging entirely, pass null (LogTape's convention for "reject
every record") rather than a silent level.