From 628a70677161c64d9ec17799ad1e3877ee296722 Mon Sep 17 00:00:00 2001 From: root Date: Sun, 9 Nov 2025 06:52:17 +0000 Subject: [PATCH] update log --- src/QueueWorkCommand.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); } } }