Skip to content

Commit

Permalink
more printing
Browse files Browse the repository at this point in the history
  • Loading branch information
mosuem committed Oct 24, 2024
1 parent b2bccb1 commit d39459d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkgs/firehose/lib/src/health/health.dart
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,10 @@ ${changeForPackage.entries.map((e) => '|${e.key.name}|${e.value.toMarkdownRow()}

Future<HealthCheckResult> leakingCheck() async {
var filesInPR = await listFilesInPRorAll(ignoredPackages);
// DO-NOT-SUBMIT
print('Files: ${filesInPR.map((e) => e.filename).join(', ')}');
print(
'Files: ${filesInPR.map((e) => e.filename).where((element) => element.contains('swiftgen')).join(', ')}');
final leaksForPackage = <Package, List<String>>{};
for (var package in packagesContaining(filesInPR)) {
log('Look for leaks in $package');
Expand Down

0 comments on commit d39459d

Please sign in to comment.