X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=blobdiff_plain;f=maintenance%2FshowCacheStats.php;h=9168d6fccce4a8fe00e1029e8f7182b68fc77762;hb=6761fa24439534d5c329b798ac1b2b08cdc0e67d;hp=cd9768d4bb67afd8f1a51b190ff41b8867da6f9e;hpb=5cfec935722d8f4015dc24cda1de8bfc7f330537;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/showCacheStats.php b/maintenance/showCacheStats.php index cd9768d4bb..9168d6fccc 100644 --- a/maintenance/showCacheStats.php +++ b/maintenance/showCacheStats.php @@ -57,7 +57,6 @@ class ShowCacheStats extends Maintenance { $this->output( sprintf( "without session: %-10d %6.2f%%\n", $noSession, $noSession / $total * 100 ) ); $this->output( sprintf( "total: %-10d %6.2f%%\n", $total, 100 ) ); - $this->output( "\nParser cache\n" ); $hits = intval( $wgMemc->get( wfMemcKey( 'stats', 'pcache_hit' ) ) ); $expired = intval( $wgMemc->get( wfMemcKey( 'stats', 'pcache_miss_expired' ) ) );