@cadenza.io/core 1.10.0 → 1.10.1

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
@@ -1808,11 +1808,10 @@ var GraphRegistry = class _GraphRegistry {
1808
1808
  this.tasks = /* @__PURE__ */ new Map();
1809
1809
  this.routines = /* @__PURE__ */ new Map();
1810
1810
  this.registerTask = new Task(
1811
- "Registry Seed",
1811
+ "Register task",
1812
1812
  (context) => {
1813
1813
  const { __task } = context;
1814
1814
  if (__task && !this.tasks.has(__task.id)) {
1815
- console.log("Registering task:", __task.name);
1816
1815
  this.tasks.set(__task.id, __task);
1817
1816
  }
1818
1817
  return true;