diff --git a/Command/PopulateCommand.php b/Command/PopulateCommand.php
index ba6affd..53ee7ee 100755
--- a/Command/PopulateCommand.php
+++ b/Command/PopulateCommand.php
@@ -91,7 +91,7 @@ class PopulateCommand extends ContainerAwareCommand
private function populateIndex(OutputInterface $output, $index, $reset)
{
if ($reset) {
- $output->writeln(sprintf('Resetting: %s', $index));
+ $output->writeln(sprintf('Resetting %s', $index));
$this->resetter->resetIndex($index);
}
@@ -99,13 +99,13 @@ class PopulateCommand extends ContainerAwareCommand
foreach ($providers as $type => $provider) {
$loggerClosure = function($message) use ($output, $index, $type) {
- $output->writeln(sprintf('Populating: %s/%s, %s', $index, $type, $message));
+ $output->writeln(sprintf('Populating %s/%s, %s', $index, $type, $message));
};
$provider->populate($loggerClosure);
}
- $output->writeln(sprintf('Refreshing: %s', $index));
+ $output->writeln(sprintf('Refreshing %s', $index));
$this->indexManager->getIndex($index)->refresh();
}