Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2010-08-25 13:48:41 +0400
committerisaacs <i@izs.me>2010-08-25 16:21:53 +0400
commit7501ac40c9d81cf39ffdd6ed0bf30e936910ca37 (patch)
tree734c84cddc5c26ce13a8a315f3cdadbe8653fceb
parent7bab22476253236f38745265935fbc8e45765e53 (diff)
Move some silly logging into silly land
-rw-r--r--lib/install.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/install.js b/lib/install.js
index 1ca371bb0..3efbdfeb9 100644
--- a/lib/install.js
+++ b/lib/install.js
@@ -57,7 +57,6 @@ function install (pkglist, cb) {
var reg = Object.create(installedPackages)
, seen = {}
- log(pkglist.join("\n"), "install")
log.verbose(mustInstall, "must install")
asyncMap(pkglist, function (pkg, cb) {
install_(pkg, reg, seen, mustInstall.indexOf(pkg) !== -1, pkglist, cb)
@@ -75,7 +74,7 @@ function install_ (pkg, reg, seen, mustHave, pkglist, cb) {
// it's a local thing or a url if it has a / in it.
if (pkg.indexOf("/") !== -1 || pkg === ".") {
- log.verbose(pkg, "install local")
+ log.silly(pkg, "install local")
return cache.add(pkg, finisher(pkg, reg, pkglist, cb))
}