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>2014-06-10 01:52:54 +0400
committerisaacs <i@izs.me>2014-06-10 01:52:54 +0400
commitbb42b9b5ca185b573c75cd8135eddc66150a5c09 (patch)
treec3c09459520cacc6b322bb7890d61e079633d6f4
parent48ac5e370eb1486eff8f69dcab592addfd5b3316 (diff)
reduce logging for unbuild
Too ridiculous, especially for deep deps
-rw-r--r--lib/unbuild.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/unbuild.js b/lib/unbuild.js
index 0384a733e..433a6926e 100644
--- a/lib/unbuild.js
+++ b/lib/unbuild.js
@@ -26,7 +26,7 @@ function unbuild_ (silent) { return function (folder, cb_) {
}
folder = path.resolve(folder)
delete build._didBuild[folder]
- log.info(folder, "unbuild")
+ log.verbose(folder.substr(npm.prefix.length + 1), "unbuild")
readJson(path.resolve(folder, "package.json"), function (er, pkg) {
// if no json, then just trash it, but no scripts or whatever.
if (er) return rm(folder, cb)