Skip to content

Commit

Permalink
reduce log verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Dec 21, 2024
1 parent e8c73c4 commit 8122f06
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions custom/benchmark/index.cfm
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@
// max_threads = int(createObject("java", "java.lang.Runtime").getRuntime().availableProcessors() * 2);
// systemOutput("Using [#max_threads#] parallel threads", true);
systemOutput("Sleeping for 5s, allow server to startup and settle", true);
systemOutput("", true);
sleep( 5000 ); // initial time to settle
loop list="once,never" item="inspect" {
systemOutput("", true);
configImport( {"inspectTemplate": inspect }, "server", "admin" );
if (inspect eq "never")
runs = never_runs;
Expand All @@ -70,11 +70,11 @@
systemOutput( "Sleeping 2s first, after warmup", true );
sleep( 2000 ); // time to settle
systemOutput( "Running #type# [#numberFormat( runs )#] times, inspect: [#inspect#]", true );
systemOutput( "Running #type# [#numberFormat( runs )#-#inspect#]", true );
s = getTickCount(units);
runAborted = false;
maxElapsedThreshold = 10 * 1000 * 1000; //10s see units!
maxElapsedThreshold = 1 * 1000 * 1000; // in micro seconds, see units!
ArrayEach( arr, function( item, idx, _arr ){
if (runAborted) return;
Expand Down

0 comments on commit 8122f06

Please sign in to comment.