diff options
author | Aaron Schulz <aschulz@wikimedia.org> | 2015-01-07 11:31:34 -0800 |
---|---|---|
committer | Aaron Schulz <aschulz@wikimedia.org> | 2015-01-07 11:36:57 -0800 |
commit | 4a56f3ba5839c1e3f4cb4d4e94d1564e6f388f86 (patch) | |
tree | ed5ebaceb400f0785433dc924303c9fb0e335c2c /StartProfiler.sample | |
parent | f652b4b7a99c560e1e7b5cba7401b182b7996fb4 (diff) | |
download | mediawikicore-4a56f3ba5839c1e3f4cb4d4e94d1564e6f388f86.tar.gz mediawikicore-4a56f3ba5839c1e3f4cb4d4e94d1564e6f388f86.zip |
Removed ProfilerStandard and ProfilerSimpleTrace
Change-Id: I2b0e0ac1a277e66b15095e766ed5df834b1ae5f9
Diffstat (limited to 'StartProfiler.sample')
-rw-r--r-- | StartProfiler.sample | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/StartProfiler.sample b/StartProfiler.sample index d20c0e1bd9d8..067dba9619cb 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. |