fix(launcher): default stats cleanup to vocab mode

This commit is contained in:
2026-03-15 00:19:08 -07:00
parent 74544d79a7
commit 93811ebfde

View File

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