Made text profiler output a bit less noisy by bumping "thresholdMs"
authorAaron Schulz <aschulz@wikimedia.org>
Mon, 22 Jun 2015 18:05:39 +0000 (11:05 -0700)
committerKrinkle <krinklemail@gmail.com>
Fri, 26 Jun 2015 07:35:28 +0000 (07:35 +0000)
Change-Id: Ie66794c94fb3f6a3dc86ad604162b8e4f91c35ba

includes/profiler/output/ProfilerOutputText.php

index 6752779..dc24f18 100644 (file)
@@ -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() ) {