@cadenza.io/core 3.0.23 → 3.0.24

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
@@ -1355,11 +1355,15 @@ var GraphNode = class _GraphNode extends SignalEmitter {
1355
1355
  };
1356
1356
  }
1357
1357
  log() {
1358
- console.log(
1359
- "Node EXECUTION:",
1360
- this.task.name,
1361
- JSON.stringify(this.context.getFullContext())
1362
- );
1358
+ try {
1359
+ console.log(
1360
+ "Node EXECUTION:",
1361
+ this.task.name,
1362
+ JSON.stringify(this.context.getFullContext())
1363
+ );
1364
+ } catch (e) {
1365
+ console.log("Node EXECUTION:", this.task.name, "[circular context]");
1366
+ }
1363
1367
  }
1364
1368
  };
1365
1369