Commit 2f737cf9 authored by Devon Carew's avatar Devon Carew Committed by GitHub

change a printStatus() to a printTrace() (#9992)

parent 2f590ecc
......@@ -375,7 +375,7 @@ class HotRunner extends ResidentRunner {
await _restartFromSources();
timer.stop();
status.cancel();
printStatus('Restarted app in ${getElapsedAsSeconds(timer.elapsed)}.');
printStatus('Restarted app in ${getElapsedAsMilliseconds(timer.elapsed)}.');
return OperationResult.ok;
} catch (error) {
status.cancel();
......@@ -412,7 +412,7 @@ class HotRunner extends ResidentRunner {
}
if (!_isPaused()) {
printStatus('Refreshing active FlutterViews before reloading.');
printTrace('Refreshing active FlutterViews before reloading.');
await refreshViews();
}
......@@ -528,8 +528,8 @@ class HotRunner extends ResidentRunner {
await view.uiIsolate.flutterReassemble();
} on TimeoutException {
reassembleTimedOut = true;
printTrace("Reassembling ${view.uiIsolate.name} took too long. ");
printStatus("Hot reloading ${view.uiIsolate.name} took too long. Hot reload may have failed.");
printTrace("Reassembling ${view.uiIsolate.name} took too long.");
printStatus("Hot reloading ${view.uiIsolate.name} took too long; the reload may have failed.");
continue;
} catch (error) {
reassembleAndScheduleErrors = true;
......
......@@ -37,14 +37,13 @@ class FlutterCommandRunner extends CommandRunner<Null> {
'flutter',
'Manage your Flutter app development.\n'
'\n'
'Common actions:\n'
'Common commands:\n'
'\n'
' flutter create <output directory>\n'
' Create a new Flutter project in the specified directory.\n'
'\n'
' flutter run [options]\n'
' Run your Flutter application on an attached device\n'
' or in an emulator.',
' Run your Flutter application on an attached device or in an emulator.',
) {
argParser.addFlag('verbose',
abbr: 'v',
......@@ -72,7 +71,7 @@ class FlutterCommandRunner extends CommandRunner<Null> {
negatable: false,
help:
'Captures a bug report file to submit to the Flutter team '
'(contains local paths, device identifiers, and log snippets).');
'(contains local paths, device\nidentifiers, and log snippets).');
String packagesHelp;
if (fs.isFileSync(kPackagesFileName))
......
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