@nsshunt/ststestrunner 1.1.24 → 1.1.26

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.
@@ -503,7 +503,7 @@ var TestCaseFhirQueryBase = class extends TestCaseFhirBase {
503
503
  this.runner.instrumentData.activeRequestCount--;
504
504
  const diff = performance.now() - start;
505
505
  this.runner.instrumentData.duration = diff;
506
- if (diff > 100) console.warn(chalk.magenta(`*** ==> Long execution: [${diff}]`));
506
+ if (diff > 150) console.debug(chalk.magenta(`*** ==> Long execution: [${diff}]`));
507
507
  await this.PublishTelemetry();
508
508
  return true;
509
509
  };