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 {
];
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');
......
......@@ -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',
......
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