@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.mjs CHANGED
@@ -1770,11 +1770,10 @@ var GraphRegistry = class _GraphRegistry {
1770
1770
  this.tasks = /* @__PURE__ */ new Map();
1771
1771
  this.routines = /* @__PURE__ */ new Map();
1772
1772
  this.registerTask = new Task(
1773
- "Registry Seed",
1773
+ "Register task",
1774
1774
  (context) => {
1775
1775
  const { __task } = context;
1776
1776
  if (__task && !this.tasks.has(__task.id)) {
1777
- console.log("Registering task:", __task.name);
1778
1777
  this.tasks.set(__task.id, __task);
1779
1778
  }
1780
1779
  return true;