From c630af8795ed92fba8a77199eb34a149b7d37c6a Mon Sep 17 00:00:00 2001 From: Anthony Axenov Date: Thu, 10 Aug 2023 15:44:21 +0800 Subject: [PATCH] Little output edit to prepare to some in-progress messages --- src/Processor.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Processor.php b/src/Processor.php index 3a39e0c..87d8d92 100644 --- a/src/Processor.php +++ b/src/Processor.php @@ -218,10 +218,10 @@ class Processor ++$current; printf("Converting '%s' (%d/%d):%s", $collectionName, $current, $count, PHP_EOL); foreach ($this->converters as $type => $exporter) { - printf(' > %s', strtolower($type)); + printf('> %s%s', strtolower($type), PHP_EOL); $outputPath = sprintf('%s%s%s', $this->outputPath, DIRECTORY_SEPARATOR, $collectionName); $exporter->convert($collection, $outputPath); - printf(' - OK: %s%s', $exporter->getOutputPath(), PHP_EOL); + printf(' OK: %s%s', $exporter->getOutputPath(), PHP_EOL); } print(PHP_EOL); ++$success;