From ee9b7f5571491ec1e270b583d39b47e53851b1e1 Mon Sep 17 00:00:00 2001 From: dimanzver Date: Mon, 10 Jun 2024 12:01:49 +0300 Subject: [PATCH] add job params logging --- src/cli/VerboseBehavior.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cli/VerboseBehavior.php b/src/cli/VerboseBehavior.php index 4f421b383..742ab0cda 100644 --- a/src/cli/VerboseBehavior.php +++ b/src/cli/VerboseBehavior.php @@ -63,6 +63,7 @@ public function beforeExec(ExecEvent $event) $this->command->stdout($this->jobTitle($event), Console::FG_GREY); $this->command->stdout(' - ', Console::FG_YELLOW); $this->command->stdout('Started', Console::FG_GREEN); + $this->command->stdout(' (params:' . json_encode($event->job, JSON_UNESCAPED_UNICODE) . ')'); $this->command->stdout(PHP_EOL); }