Unverified Commit 46cb9ede authored by Emmanuel Garcia's avatar Emmanuel Garcia Committed by GitHub

Reduce Gradle log level in verbose output (#102422)

parent 899548c4
...@@ -269,7 +269,7 @@ class AndroidGradleBuilder implements AndroidBuilder { ...@@ -269,7 +269,7 @@ class AndroidGradleBuilder implements AndroidBuilder {
]; ];
if (_logger.isVerbose) { if (_logger.isVerbose) {
command.add('--full-stacktrace'); command.add('--full-stacktrace');
command.add('--debug'); command.add('--info');
command.add('-Pverbose=true'); command.add('-Pverbose=true');
} else { } else {
command.add('-q'); command.add('-q');
...@@ -593,7 +593,7 @@ class AndroidGradleBuilder implements AndroidBuilder { ...@@ -593,7 +593,7 @@ class AndroidGradleBuilder implements AndroidBuilder {
]; ];
if (_logger.isVerbose) { if (_logger.isVerbose) {
command.add('--full-stacktrace'); command.add('--full-stacktrace');
command.add('--debug'); command.add('--info');
command.add('-Pverbose=true'); command.add('-Pverbose=true');
} else { } else {
command.add('-q'); command.add('-q');
......
...@@ -142,7 +142,7 @@ void main() { ...@@ -142,7 +142,7 @@ void main() {
command: <String>[ command: <String>[
'gradlew', 'gradlew',
'--full-stacktrace', '--full-stacktrace',
'--debug', '--info',
'-Pverbose=true', '-Pverbose=true',
'-Ptarget-platform=android-arm,android-arm64,android-x64', '-Ptarget-platform=android-arm,android-arm64,android-x64',
'-Ptarget=lib/main.dart', '-Ptarget=lib/main.dart',
...@@ -782,7 +782,7 @@ void main() { ...@@ -782,7 +782,7 @@ void main() {
'-Pis-plugin=false', '-Pis-plugin=false',
'-PbuildNumber=1.0', '-PbuildNumber=1.0',
'--full-stacktrace', '--full-stacktrace',
'--debug', '--info',
'-Pverbose=true', '-Pverbose=true',
'-Pdart-obfuscation=false', '-Pdart-obfuscation=false',
'-Ptrack-widget-creation=false', '-Ptrack-widget-creation=false',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment