Reduce Gradle log level in verbose output (#102422)

This commit is contained in:
Emmanuel Garcia 2022-04-25 10:30:40 -07:00 committed by GitHub
parent 899548c48a
commit 46cb9ede2f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -269,7 +269,7 @@ class AndroidGradleBuilder implements AndroidBuilder {
];
if (_logger.isVerbose) {
command.add('--full-stacktrace');
command.add('--debug');
command.add('--info');
command.add('-Pverbose=true');
} else {
command.add('-q');
@ -593,7 +593,7 @@ class AndroidGradleBuilder implements AndroidBuilder {
];
if (_logger.isVerbose) {
command.add('--full-stacktrace');
command.add('--debug');
command.add('--info');
command.add('-Pverbose=true');
} else {
command.add('-q');

View file

@ -142,7 +142,7 @@ void main() {
command: <String>[
'gradlew',
'--full-stacktrace',
'--debug',
'--info',
'-Pverbose=true',
'-Ptarget-platform=android-arm,android-arm64,android-x64',
'-Ptarget=lib/main.dart',
@ -782,7 +782,7 @@ void main() {
'-Pis-plugin=false',
'-PbuildNumber=1.0',
'--full-stacktrace',
'--debug',
'--info',
'-Pverbose=true',
'-Pdart-obfuscation=false',
'-Ptrack-widget-creation=false',