Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add pcntl_signal_dispatch after job finish for php extension #485

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
add job params logging
  • Loading branch information
dimansuvorlinda committed Jun 10, 2024
commit ee9b7f5571491ec1e270b583d39b47e53851b1e1
1 change: 1 addition & 0 deletions src/cli/VerboseBehavior.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down
Loading