@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 +9 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1318,11 +1318,15 @@ var GraphNode = class _GraphNode extends SignalEmitter {
|
|
|
1318
1318
|
};
|
|
1319
1319
|
}
|
|
1320
1320
|
log() {
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1321
|
+
try {
|
|
1322
|
+
console.log(
|
|
1323
|
+
"Node EXECUTION:",
|
|
1324
|
+
this.task.name,
|
|
1325
|
+
JSON.stringify(this.context.getFullContext())
|
|
1326
|
+
);
|
|
1327
|
+
} catch (e) {
|
|
1328
|
+
console.log("Node EXECUTION:", this.task.name, "[circular context]");
|
|
1329
|
+
}
|
|
1326
1330
|
}
|
|
1327
1331
|
};
|
|
1328
1332
|
|