@toa.io/core 1.0.0-alpha.63 → 1.0.0-alpha.64

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/discovery.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toa.io/core",
3
- "version": "1.0.0-alpha.63",
3
+ "version": "1.0.0-alpha.64",
4
4
  "description": "Toa Core",
5
5
  "author": "temich <tema.gurtovoy@gmail.com>",
6
6
  "homepage": "https://github.com/toa-io/toa#readme",
@@ -26,5 +26,5 @@
26
26
  "error-value": "0.3.0",
27
27
  "openspan": "1.0.0-alpha.63"
28
28
  },
29
- "gitHead": "9acf69d3135ea69bb9080c4f2f654d119f7b8a82"
29
+ "gitHead": "2a79179b0e6e21ff48eee481d9d71ed0e5d6b343"
30
30
  }
package/src/discovery.js CHANGED
@@ -25,7 +25,7 @@ class Discovery extends Connector {
25
25
  this.depends(this.#lookups[id])
26
26
  }
27
27
 
28
- const warning = () => console.warn(`Waiting for lookup response from %s...`, id)
28
+ const warning = () => console.warn(`Waiting for lookup response`, { component: id })
29
29
  const timeout = setTimeout(warning, TIMEOUT)
30
30
 
31
31
  const output = await this.#lookups[id].invoke()