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