diff --git a/src/QueueWorkCommand.php b/src/QueueWorkCommand.php index e509b40..fbe68de 100644 --- a/src/QueueWorkCommand.php +++ b/src/QueueWorkCommand.php @@ -84,13 +84,13 @@ class QueueWorkCommand extends Command exec('pkill -f "artisan queue:work"'); } - $this->info("Starting {$workers} queue:work processes on connection '{$connection}' and queue '{$queue}' with options: '{$workerOptions}'..."); + $this->line("Starting {$workers} queue:work processes on connection '{$connection}' and queue '{$queue}' with options: '{$workerOptions}'..."); $processes = []; $pipesList = []; for ($i = 1; $i <= $workers; $i++) { - $this->info("Launching worker {$i}..."); + $this->line("Lastring: unching worker {$i}..."); $descriptors = [ 1 => ['pipe', 'w'], // stdout 2 => ['pipe', 'w'], // stderr @@ -121,7 +121,7 @@ class QueueWorkCommand extends Command if ($out !== '') { foreach (explode("\n", trim($out)) as $line) { if ($line !== '') { - $this->info("[Worker {$i}] " . $line); + $this->line("[Worker {$i}] " . $line); } } }