Skip to content

Commit

Permalink
Migrated code from symfony/process to react/child-process
Browse files Browse the repository at this point in the history
  • Loading branch information
gplanchat committed Nov 21, 2023
1 parent 57b6c64 commit f5c5792
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Adapter/Composer.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ private function execute(Process $process, float $timeout = 300): void
$deferred->resolve();
});

$this->logger->notice(sprintf('Starting process "%s".', $process->getCommand()));
$this->logger->debug(sprintf('Starting process "%s".', $process->getCommand()));

await(timeout($deferred->promise(), $timeout));

Expand Down
2 changes: 1 addition & 1 deletion src/Adapter/Docker/Satellite.php
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ private function execute(
$deferred->resolve();
});

$logger->notice(sprintf('Starting process "%s".', $process->getCommand()));
$logger->debug(sprintf('Starting process "%s".', $process->getCommand()));

await(timeout($deferred->promise(), $timeout));

Expand Down
2 changes: 1 addition & 1 deletion src/Console/Command/RunCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ private function executeWorker(
$deferred->resolve();
});

$style->note(sprintf('Starting process "%s".', $process->getCommand()));
$style->info(sprintf('Starting process "%s".', $process->getCommand()));

await($deferred->promise());

Expand Down

0 comments on commit f5c5792

Please sign in to comment.