X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FshowCacheStats.php;h=9168d6fccce4a8fe00e1029e8f7182b68fc77762;hb=2a47a3e91cb89bf725233235ff27176eb9aad6eb;hp=cd9768d4bb67afd8f1a51b190ff41b8867da6f9e;hpb=703206f38c63ba51e75a8aa49724f112ab78047d;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' ) ) );