Skip to content

Commit

Permalink
Fixes #84 Adds notification UUID to the output. (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
typhonius authored May 17, 2020
1 parent 1da4c05 commit 0ec4213
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Commands/AcquiaCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ protected function waitForNotification($response)

$notification = $notificationAdapter->get($notificationUuid);

$progress->setMessage('Notification ' . $notification->status);
$progress->setMessage(sprintf('Notification %s: %s', $notification->uuid, $notification->status));
switch ($notification->status) {
case self::TASKFAILED:
// If there's one failure we should throw an exception
Expand Down

0 comments on commit 0ec4213

Please sign in to comment.