fix(launcher): default stats cleanup to vocab mode

This commit is contained in:
2026-03-15 00:19:08 -07:00
parent e68defbedf
commit 467ed02c80

View File

@@ -260,7 +260,7 @@ export function parseCliPrograms(
statsTriggered = true;
if ((action || '').toLowerCase() === 'cleanup') {
statsCleanup = true;
statsCleanupVocab = options.vocab === true;
statsCleanupVocab = options.vocab !== false;
}
statsLogLevel = typeof options.logLevel === 'string' ? options.logLevel : null;
});