@powerhousedao/powerhouse-vetra-packages 6.2.2-dev.88 → 6.2.2-staging.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -332,10 +332,12 @@ function runProjectionWorker(parentPort, overrides = {}) {
332
332
  case "init":
333
333
  handleInit(msg).catch((err) => {
334
334
  post({
335
- type: "init-failed",
336
- correlationId: msg.correlationId,
335
+ type: "log",
337
336
  shardId,
338
- error: errorToInfo(err)
337
+ level: "error",
338
+ message: "projection worker init failed",
339
+ args: [errorToInfo(err)],
340
+ timestamp: Date.now()
339
341
  });
340
342
  });
341
343
  break;