Remove $wgDebugFunctionEntry, unused
authorChad Horohoe <chadh@wikimedia.org>
Thu, 8 Jan 2015 05:07:24 +0000 (21:07 -0800)
committerChad Horohoe <chadh@wikimedia.org>
Thu, 8 Jan 2015 05:07:24 +0000 (21:07 -0800)
Change-Id: I5f215ab2275333b329406ca7dda7b12fc0b9b6ec

includes/DefaultSettings.php
maintenance/eval.php

index 7e5c857..ee462d8 100644 (file)
@@ -5433,11 +5433,6 @@ $wgUDPProfilerPort = null;
  */
 $wgUDPProfilerFormatString = null;
 
-/**
- * Output debug message on every wfProfileIn/wfProfileOut
- */
-$wgDebugFunctionEntry = false;
-
 /**
  * Destination for wfIncrStats() data...
  * 'cache' to go into the system cache, if enabled (memcached)
index 25ecc09..e20c477 100644 (file)
@@ -49,9 +49,6 @@ if ( isset( $options['d'] ) ) {
                        $lb->setServerInfo( $i, $server );
                }
        }
-       if ( $d > 2 ) {
-               $wgDebugFunctionEntry = true;
-       }
 }
 
 $__useReadline = function_exists( 'readline_add_history' )