File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change 3131use React \Filesystem \FilesystemInterface ;
3232use RuntimeException ;
3333
34+ use function array_filter ;
3435use function array_key_first ;
36+ use function array_keys ;
37+ use function array_map ;
3538use function error_get_last ;
39+ use function function_exists ;
3640use function gettype ;
3741use function is_array ;
42+ use function json_last_error_msg ;
43+ use function opcache_get_status ;
44+ use function strlen ;
3845use function tempnam ;
3946use function json_encode ;
4047use function json_decode ;
@@ -394,6 +401,8 @@ public function start_action(string $actionName): Process
394401 $ process = new Process ('exec ' . $ actionConfig ['cmd ' ], $ actionConfig ['wd ' ], $ actionConfig ['env ' ]);
395402 $ process ->start ($ this ->loop );
396403
404+ $ this ->logger ->info ("Started action process $ actionName " );
405+
397406 $ process ->stderr ->on ('data ' , function ($ data ) use ($ actionName ) {
398407 $ this ->logger ->error ("$ actionName message: " . trim ($ data ));
399408 });
You can’t perform that action at this time.
0 commit comments