X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fpoolcounter%2FPoolWorkArticleView.php;h=534e86b6bead93ab0a443165808e03258b9a8b9d;hb=d846bf5705c8f87cde1e9b1f9295387a1fa417d4;hp=3c60ea9f53f570a770ee1b3e4c9b993df798a7d2;hpb=5ad8f11baf52c1dbfbc19371647be775e0db6e74;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/poolcounter/PoolWorkArticleView.php b/includes/poolcounter/PoolWorkArticleView.php index 3c60ea9f53..534e86b6be 100644 --- a/includes/poolcounter/PoolWorkArticleView.php +++ b/includes/poolcounter/PoolWorkArticleView.php @@ -19,7 +19,7 @@ */ class PoolWorkArticleView extends PoolCounterWork { - /** @var Page */ + /** @var WikiPage */ private $page; /** @var string */ @@ -44,7 +44,7 @@ class PoolWorkArticleView extends PoolCounterWork { private $error = false; /** - * @param Page $page + * @param WikiPage $page * @param ParserOptions $parserOptions ParserOptions to use for the parse * @param int $revid ID of the revision being parsed. * @param bool $useParserCache Whether to use the parser cache. @@ -52,7 +52,7 @@ class PoolWorkArticleView extends PoolCounterWork { * @param Content|string $content Content to parse or null to load it; may * also be given as a wikitext string, for BC. */ - public function __construct( Page $page, ParserOptions $parserOptions, + public function __construct( WikiPage $page, ParserOptions $parserOptions, $revid, $useParserCache, $content = null ) { if ( is_string( $content ) ) { // BC: old style call @@ -144,11 +144,12 @@ class PoolWorkArticleView extends PoolCounterWork { if ( $time > 3 ) { // TODO: Use Parser's logger (once it has one) $logger = MediaWiki\Logger\LoggerFactory::getInstance( 'slow-parse' ); - $logger->info( '{time} {title}', array( + $logger->info( '{time} {title}', [ 'time' => number_format( $time, 2 ), 'title' => $this->page->getTitle()->getPrefixedDBkey(), + 'ns' => $this->page->getTitle()->getNamespace(), 'trigger' => 'view', - ) ); + ] ); } if ( $this->cacheable && $this->parserOutput->isCacheable() && $isCurrent ) {