@cadenza.io/core 1.7.10 → 1.7.11
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 +6 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1006,7 +1006,12 @@ var GraphNode = class _GraphNode extends SignalEmitter {
|
|
|
1006
1006
|
};
|
|
1007
1007
|
}
|
|
1008
1008
|
log() {
|
|
1009
|
-
console.log(
|
|
1009
|
+
console.log(
|
|
1010
|
+
"Node execution:",
|
|
1011
|
+
this.task.name,
|
|
1012
|
+
this.context.getFullContext(),
|
|
1013
|
+
this.routineExecId
|
|
1014
|
+
);
|
|
1010
1015
|
}
|
|
1011
1016
|
};
|
|
1012
1017
|
|