querysub 0.353.0 → 0.354.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "querysub",
3
- "version": "0.353.0",
3
+ "version": "0.354.0",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
6
  "note1": "note on node-forge fork, see https://github.com/digitalbazaar/forge/issues/744 for details",
@@ -2497,7 +2497,7 @@ registerPeriodic(function logWatcherTypes() {
2497
2497
  }
2498
2498
  let sorted = sort(Array.from(counts.entries()), x => -x[1].count);
2499
2499
 
2500
- console.log(`${formatNumber(allWatchers.size)} watchers | ${formatNumber(sorted.length)} types`);
2500
+ console.log(`${formatNumber(allWatchers.size)} watchers | ${formatNumber(sorted.length)} types | remember, components have 3 watchers`);
2501
2501
  // Log the top 5
2502
2502
  for (let [type, countObj] of sorted.slice(0, 5)) {
2503
2503
  let countText = `${formatPercent(countObj.count / allWatchers.size)} (${formatNumber(countObj.count)})`;