@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.js
CHANGED
|
@@ -1044,7 +1044,12 @@ var GraphNode = class _GraphNode extends SignalEmitter {
|
|
|
1044
1044
|
};
|
|
1045
1045
|
}
|
|
1046
1046
|
log() {
|
|
1047
|
-
console.log(
|
|
1047
|
+
console.log(
|
|
1048
|
+
"Node execution:",
|
|
1049
|
+
this.task.name,
|
|
1050
|
+
this.context.getFullContext(),
|
|
1051
|
+
this.routineExecId
|
|
1052
|
+
);
|
|
1048
1053
|
}
|
|
1049
1054
|
};
|
|
1050
1055
|
|