From 10ca7438d7d19bc7ef1340651e5fbcf9451d5e32 Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Mon, 16 Aug 2021 10:54:27 -0400 Subject: [PATCH] Increase the logging of first best/worst requests to 1000 --- platform/dig/snfe.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform/dig/snfe.js b/platform/dig/snfe.js index c6b96dfb9..7da95c943 100644 --- a/platform/dig/snfe.js +++ b/platform/dig/snfe.js @@ -221,12 +221,12 @@ async function bench() { } if ( MAXCOST ) { - const costly = results.sort((a,b) => b[1].t - a[1].t).slice(0, 100); + const costly = results.sort((a,b) => b[1].t - a[1].t).slice(0, 1000); write('data/snfe.maxcost.json', JSON.stringify(costly, null, 2)); } if ( MINCOST ) { - const costly = results.sort((a,b) => a[1].t - b[1].t).slice(0, 100); + const costly = results.sort((a,b) => a[1].t - b[1].t).slice(0, 1000); write('data/snfe.mincost.json', JSON.stringify(costly, null, 2)); }