Commit b180caae authored by Devon Carew's avatar Devon Carew Committed by GitHub

change a few more places to use the seconds display for log output (#7995)

parent 36c63e70
...@@ -230,7 +230,7 @@ class AndroidDevice extends Device { ...@@ -230,7 +230,7 @@ class AndroidDevice extends Device {
if (!_checkForSupportedAdbVersion() || !_checkForSupportedAndroidVersion()) if (!_checkForSupportedAdbVersion() || !_checkForSupportedAndroidVersion())
return false; return false;
Status status = logger.startProgress('Installing ${apk.apkPath}...'); Status status = logger.startProgress('Installing ${apk.apkPath}...', expectSlowOperation: true);
String installOut = runCheckedSync(adbCommandForDevice(<String>['install', '-r', apk.apkPath])); String installOut = runCheckedSync(adbCommandForDevice(<String>['install', '-r', apk.apkPath]));
status.stop(); status.stop();
RegExp failureExp = new RegExp(r'^Failure.*$', multiLine: true); RegExp failureExp = new RegExp(r'^Failure.*$', multiLine: true);
......
...@@ -277,7 +277,8 @@ class HotRunner extends ResidentRunner { ...@@ -277,7 +277,8 @@ class HotRunner extends ResidentRunner {
if (result != 0) if (result != 0)
return false; return false;
} }
Status devFSStatus = logger.startProgress('Syncing files to device...'); Status devFSStatus = logger.startProgress('Syncing files to device...',
expectSlowOperation: true);
int bytes = await _devFS.update(progressReporter: progressReporter, int bytes = await _devFS.update(progressReporter: progressReporter,
bundle: assetBundle, bundle: assetBundle,
bundleDirty: rebuildBundle, bundleDirty: rebuildBundle,
......
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