fix(startup): don't log debug in skip-heavy startup path

This commit is contained in:
2026-03-01 02:24:31 -08:00
parent 2c001e8017
commit 4b0a2ec486

View File

@@ -171,7 +171,6 @@ export async function runAppReadyRuntime(deps: AppReadyRuntimeDeps): Promise<voi
if (deps.shouldSkipHeavyStartup?.()) {
await deps.loadYomitanExtension();
deps.handleInitialArgs();
deps.logDebug?.(`App-ready critical path finished in ${now() - startupStartedAtMs}ms.`);
return;
}