No output on wait

This commit is contained in:
Juan Pablo Vial
2025-05-13 15:58:49 -04:00
parent e7f3b33850
commit d536342425

View File

@ -50,7 +50,7 @@ class BaseLoop extends Console\Command\Command
]); ]);
$diff = $nextMinute->getTimestamp() - $start->getTimestamp(); $diff = $nextMinute->getTimestamp() - $start->getTimestamp();
if ($diff > 0) { if ($diff > 0) {
$output->writeln("Waiting {$diff} seconds..."); $this->logger->debug("Waiting {$diff} seconds...");
sleep($diff); sleep($diff);
} }
} }