Index: utils/pub/command_install.dart |
diff --git a/utils/pub/command_install.dart b/utils/pub/command_install.dart |
index c14884e29c387f3fbaada86a1c4030d42b0544f0..b83c6fac6569b42931197595c7ac19b4e4caf151 100644 |
--- a/utils/pub/command_install.dart |
+++ b/utils/pub/command_install.dart |
@@ -5,6 +5,7 @@ |
library command_install; |
import 'entrypoint.dart'; |
+import 'log.dart' as log; |
import 'pub.dart'; |
/** Handles the `install` pub command. */ |
@@ -14,7 +15,7 @@ class InstallCommand extends PubCommand { |
Future onRun() { |
return entrypoint.installDependencies().transform((_) { |
- print("Dependencies installed!"); |
+ log.message("Dependencies installed!"); |
}); |
} |
} |