X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=StartProfiler.sample;h=067dba9619cbedf4e7edb442f7e0779ce70014f0;hb=205c2e76e4f388e8dac8f3b09c6dadd043421d6b;hp=d20c0e1bd9d8a8d2aeb68d57de06fec8ba44e5d1;hpb=7ceeaa22084213668697785c6b174464442e9581;p=lhc%2Fweb%2Fwiklou.git diff --git a/StartProfiler.sample b/StartProfiler.sample index d20c0e1bd9..067dba9619 100644 --- a/StartProfiler.sample +++ b/StartProfiler.sample @@ -3,8 +3,6 @@ /** * To use a profiler, copy this file to StartProfiler.php, * and add either: - * $wgProfiler['class'] = 'ProfilerStandard'; - * or * $wgProfiler['class'] = 'ProfilerXhprof'; * * For output, add: @@ -22,7 +20,7 @@ * maintenance/archives/patch-profiling.sql to your database. * * For a rudimentary sampling profiler: - * $wgProfiler['class'] = 'ProfilerStandard'; + * $wgProfiler['class'] = 'ProfilerXhprof'; * $wgProfiler['output'] = array( 'db' ); * $wgProfiler['sampling'] = 50; // one every 50 requests * This will use ProfilerStub for non-sampled cases.