@acorex/platform 20.3.0-next.19 → 20.3.0-next.20

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.
@@ -2416,7 +2416,6 @@ class AXPDistributedEventListenerService {
2416
2416
  const providers = await this.resolveProviders();
2417
2417
  const matched = providers.filter(p => p.key === key);
2418
2418
  if (!matched.length) {
2419
- console.warn(`[AXPDistributedEventListenerService] No provider found for key='${key}'`);
2420
2419
  return;
2421
2420
  }
2422
2421
  for (const provider of matched) {
@@ -2447,7 +2446,6 @@ class AXPDistributedEventListenerService {
2447
2446
  const timer = setTimeout(() => {
2448
2447
  if (!finished) {
2449
2448
  if (n < options.retries) {
2450
- console.warn(`[dispatchAsync] retrying key='${key}' (${n + 1}/${options.retries})`);
2451
2449
  resolve(attempt(n + 1));
2452
2450
  }
2453
2451
  else {