From 033f71f3df93a7c0185e47297d64c4228be18175 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Mon, 22 Jun 2015 11:05:39 -0700 Subject: [PATCH] Made text profiler output a bit less noisy by bumping "thresholdMs" Change-Id: Ie66794c94fb3f6a3dc86ad604162b8e4f91c35ba --- includes/profiler/output/ProfilerOutputText.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() ) { -- 2.20.1