From 67fdf937c328a4fd88b1c724bc605e9909e4ea35 Mon Sep 17 00:00:00 2001 From: Daco Harkes Date: Mon, 27 Sep 2021 21:38:07 +0200 Subject: [PATCH] [bots] verbose logs when analyzing samples (#90447) --- dev/bots/analyze.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev/bots/analyze.dart b/dev/bots/analyze.dart index d15694e2802..1e4a5346cb6 100644 --- a/dev/bots/analyze.dart +++ b/dev/bots/analyze.dart @@ -118,10 +118,10 @@ Future run(List arguments) async { ...arguments, ]); - // Analyze all the sample code in the repo + // Analyze all the sample code in the repo. print('$clock Sample code...'); await runCommand(dart, - [path.join(flutterRoot, 'dev', 'bots', 'analyze_sample_code.dart')], + [path.join(flutterRoot, 'dev', 'bots', 'analyze_sample_code.dart'), '--verbose'], workingDirectory: flutterRoot, );