diff --git a/Command/BrevoExportCatalogCommand.php b/Command/BrevoExportCatalogCommand.php index 4d68a0a..430418a 100644 --- a/Command/BrevoExportCatalogCommand.php +++ b/Command/BrevoExportCatalogCommand.php @@ -77,15 +77,13 @@ protected function execute(InputInterface $input, OutputInterface $output): int $progressBar->finish(); - $output->writeln($objName. 's done.'); + $output->writeln(' ' . $objName. ' export terminated.'); } catch (\Exception $exception) { $output->writeln('error during '.$objName.' import : '.$exception->getMessage()); $progressBar->setMessage(''.$exception->getMessage().''); } } - $output->writeln("Done."); - return Command::SUCCESS; } } diff --git a/Command/BrevoExportCustomerCommand.php b/Command/BrevoExportCustomerCommand.php index 61983fc..8a7eb8c 100644 --- a/Command/BrevoExportCustomerCommand.php +++ b/Command/BrevoExportCustomerCommand.php @@ -59,7 +59,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int $progressBar->setMessage("".$exception->getMessage().""); } - $output->writeln("Done."); + $output->writeln(" customer export done."); return Command::SUCCESS; }