@overmap-ai/core 1.0.16-fix-misc-issues.4 → 1.0.16-fix-misc-issues.5

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.
@@ -88,7 +88,6 @@ class OutboxCoordinator {
88
88
  debugLog("Adding request to outbox:", request2);
89
89
  this.graph.addNode(request2.payload.uuid, request2);
90
90
  if (request2.payload.blockers.length === 0 || this.graph.size() === 1) {
91
- debugLog("Request has no dependencies, or there are no other nodes in the graph");
92
91
  return;
93
92
  }
94
93
  for (const node of this.graph.overallOrder()) {
@@ -3483,11 +3482,8 @@ class OfflineMiddleware {
3483
3482
  } else {
3484
3483
  console.debug(`All middleware finished with ${this.constructor.name}, performing request:`, action);
3485
3484
  const baseUrl = action.meta.offline.effect.BASE_URL;
3486
- debugLog("Base URL:", baseUrl);
3487
3485
  if (!clientStore)
3488
3486
  throw new Error("Client store not set");
3489
- debugLog("Client store is set");
3490
- debugLog("Performing request:", action);
3491
3487
  return performRequest(action, makeClient(baseUrl, clientStore));
3492
3488
  }
3493
3489
  }