Little output edit to prepare to some in-progress messages

pull/3/head
Anthony Axenov 2023-08-10 15:44:21 +08:00
parent 9947987c20
commit c630af8795
Signed by: anthony
GPG Key ID: EA9EC32FF7CCD4EC
1 changed files with 2 additions and 2 deletions

View File

@ -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;