From 14af7488408420618164b2c31f252e89259b2f70 Mon Sep 17 00:00:00 2001 From: Tim Nagel Date: Thu, 12 Mar 2015 17:41:26 +1100 Subject: [PATCH] Fix bad merge --- Command/PopulateCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Command/PopulateCommand.php b/Command/PopulateCommand.php index ed686d965..afe18b3bd 100644 --- a/Command/PopulateCommand.php +++ b/Command/PopulateCommand.php @@ -169,7 +169,7 @@ private function populateIndexType(OutputInterface $output, $index, $type, $rese } $provider = $this->providerRegistry->getProvider($index, $type); - $loggerClosure = $this->getLoggerClosure($output, $index, $type); + $loggerClosure = $this->progressClosureBuilder->build($output, 'Populating', $index, $type); $provider->populate($loggerClosure, $event->getOptions()); $this->dispatcher->dispatch(TypePopulateEvent::POST_TYPE_POPULATE, $event);