From 0c530b66b97720814a47012650fb2b9d8b93055d Mon Sep 17 00:00:00 2001 From: Jaime Wren Date: Wed, 20 Nov 2024 11:23:29 -0800 Subject: [PATCH] Improve the logged message at the end of the verify cli task (#7802) --- tool/plugin/lib/verify.dart | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tool/plugin/lib/verify.dart b/tool/plugin/lib/verify.dart index 4c5a0d7f75..51e8186ba3 100644 --- a/tool/plugin/lib/verify.dart +++ b/tool/plugin/lib/verify.dart @@ -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; } }