@cadenza.io/core 1.11.11 → 1.11.12

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.
package/dist/index.js CHANGED
@@ -200,7 +200,7 @@ var SignalBroker = class _SignalBroker {
200
200
  }
201
201
  }
202
202
  execute(signal, context) {
203
- var _a;
203
+ var _a, _b, _c;
204
204
  const isMeta = signal.startsWith("meta.");
205
205
  const isSubMeta = signal.startsWith("sub_meta.");
206
206
  const isMetric = (_a = context.__signalEmission) == null ? void 0 : _a.isMetric;
@@ -222,7 +222,7 @@ var SignalBroker = class _SignalBroker {
222
222
  }
223
223
  if (this.debug && (!isMetric || this.verbose)) {
224
224
  console.log(
225
- `Emitting signal ${signal} with context ${JSON.stringify(context)}`
225
+ `EMITTING signal ${signal} to listeners ${(_c = (_b = this.signalObservers.get(signal)) == null ? void 0 : _b.tasks.size) != null ? _c : 0} with context ${JSON.stringify(context)}`
226
226
  );
227
227
  }
228
228
  let executed;
@@ -1295,7 +1295,7 @@ var GraphNode = class _GraphNode extends SignalEmitter {
1295
1295
  }
1296
1296
  log() {
1297
1297
  console.log(
1298
- "Node execution:",
1298
+ "Node EXECUTION:",
1299
1299
  this.task.name,
1300
1300
  JSON.stringify(this.context.getFullContext())
1301
1301
  );