@cadenza.io/core 3.0.25 → 3.0.26

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
@@ -2166,7 +2166,6 @@ var GraphRegistry = class _GraphRegistry {
2166
2166
  const { __name } = context;
2167
2167
  for (const task of this.tasks.values()) {
2168
2168
  if (task.name === __name) {
2169
- console.log("TASK FOUND", task.name);
2170
2169
  return { ...context, __task: task };
2171
2170
  }
2172
2171
  }
@@ -2433,7 +2432,6 @@ var GraphRunner = class extends SignalEmitter {
2433
2432
  }
2434
2433
  startRun(context, emit) {
2435
2434
  var _a, _b, _c;
2436
- console.log("START RUN", context);
2437
2435
  if (context.__task || context.__routine) {
2438
2436
  const routine = (_a = context.__task) != null ? _a : context.__routine;
2439
2437
  delete context.__task;