From: Aaron Schulz Date: Mon, 22 Jun 2015 18:05:39 +0000 (-0700) Subject: Made text profiler output a bit less noisy by bumping "thresholdMs" X-Git-Tag: 1.31.0-rc.0~10968^2 X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dmembres/modifier.php?a=commitdiff_plain;h=033f71f3df93a7c0185e47297d64c4228be18175;p=lhc%2Fweb%2Fwiklou.git Made text profiler output a bit less noisy by bumping "thresholdMs" Change-Id: Ie66794c94fb3f6a3dc86ad604162b8e4f91c35ba --- diff --git a/includes/profiler/output/ProfilerOutputText.php b/includes/profiler/output/ProfilerOutputText.php index 675277986d..dc24f18102 100644 --- a/includes/profiler/output/ProfilerOutputText.php +++ b/includes/profiler/output/ProfilerOutputText.php @@ -35,7 +35,7 @@ class ProfilerOutputText extends ProfilerOutput { parent::__construct( $collector, $params ); $this->thresholdMs = isset( $params['thresholdMs'] ) ? $params['thresholdMs'] - : .25; + : 1.0; } public function log( array $stats ) { if ( $this->collector->getTemplated() ) {