Skip to content

Commit

Permalink
More verbose output of warmup command
Browse files Browse the repository at this point in the history
  • Loading branch information
Daanvm committed Oct 12, 2024
1 parent 77fcfe1 commit 60109b6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/src/Commands/WarmupCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,12 @@ public function run(): void
$this->output->write(" ");

foreach ($project->getReleaseItems() as $releaseItem) {
$this->output->writeln(" > {$releaseItem->getTitle()}");

foreach ($releaseItem->getSheetMusics() as $sheetMusic) {
$this->output->writeln(" ! {$sheetMusic->pdfFilename}");
$sheetMusic->getBase64encodedPngData();
$sheetMusic->getNumberOfPages();
$this->output->write(".");
}
}

Expand Down

0 comments on commit 60109b6

Please sign in to comment.