Unverified Commit c25558d4 authored by Devon Carew's avatar Devon Carew Committed by GitHub

change 2 print calls to printStatus (#13206)

parent d776f64f
...@@ -179,7 +179,7 @@ class UpdatePackagesCommand extends FlutterCommand { ...@@ -179,7 +179,7 @@ class UpdatePackagesCommand extends FlutterCommand {
if (isPrintTransitiveClosure) { if (isPrintTransitiveClosure) {
tree._dependencyTree.forEach((String from, Set<String> to) { tree._dependencyTree.forEach((String from, Set<String> to) {
print('$from -> $to'); printStatus('$from -> $to');
}); });
return; return;
} }
...@@ -256,7 +256,7 @@ class UpdatePackagesCommand extends FlutterCommand { ...@@ -256,7 +256,7 @@ class UpdatePackagesCommand extends FlutterCommand {
if (path != null) if (path != null)
buf.write(' <- '); buf.write(' <- ');
} }
print(buf); printStatus(buf.toString());
} }
if (paths.isEmpty) { if (paths.isEmpty) {
......
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