Skip to content

Commit

Permalink
Improve the logged message at the end of the verify cli task (#7802)
Browse files Browse the repository at this point in the history
  • Loading branch information
jwren authored Nov 20, 2024
1 parent 9a26271 commit 0c530b6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tool/plugin/lib/verify.dart
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,10 @@ class VerifyCommand extends ProductCommand {
return result;
}
}
// TODO (jwren) improve logging by listing out the idea versions verified:
log('\nSummary: verification of all ${buildSpecs
.length} build specifications was successful.');

var verifiedVersions = specs.map((spec) => spec.name).toList().join(', ');
log('\nVerification of the ${buildSpecs.length} builds was '
'successful: $verifiedVersions.');
return result;
}
}

0 comments on commit 0c530b6

Please sign in to comment.