diff --git a/packages/engine-multi/src/api/validate-worker.ts b/packages/engine-multi/src/api/validate-worker.ts index d2e931767..2ac056982 100644 --- a/packages/engine-multi/src/api/validate-worker.ts +++ b/packages/engine-multi/src/api/validate-worker.ts @@ -11,8 +11,7 @@ export default async (api: EngineAPI) => { // TODO argument drive this await api.callWorker('handshake', [], {}, { timeout: 500 }); } catch (e) { - // If the handshake function isn't available, this will timeout - // Throw a nice error if the worker isn't valid + console.error(e); throw new Error('Invalid worker path'); } };