Skip to content

Commit

Permalink
fix(DockerActions): correct info log, move after imageId change (#350)
Browse files Browse the repository at this point in the history
Fix incorrect info logging, log after imageId change

Signed-off-by: Andrey Borysenko <andrey18106x@gmail.com>
  • Loading branch information
andrey18106 authored Aug 5, 2024
1 parent b5f8caf commit b3b6e43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/DeployActions/DockerActions.php
Original file line number Diff line number Diff line change
Expand Up @@ -247,8 +247,8 @@ public function pullImage(
}
}
$this->logger->info(sprintf('Failed to pull "extended" image for %s: %s', $imageId, $r));
$this->logger->info(sprintf('Pulling "base" image: %s', $imageId));
$imageId = $this->buildBaseImageName($params);
$this->logger->info(sprintf('Pulling "base" image: %s', $imageId));
try {
$r = $this->pullImageInternal($dockerUrl, $exApp, $startPercent, $maxPercent, $imageId);
} catch (GuzzleException $e) {
Expand Down

0 comments on commit b3b6e43

Please sign in to comment.