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-05-19 11:31:47 +0400
committerisaacs <i@izs.me>2010-05-19 11:31:47 +0400
commit589bae710640c606641bfc70f9217f4b75d66473 (patch)
treee38a1cafe6001a9a4ab7b4050f52d99bb77f61a9
parent2e212f3bfb75ae06491f0996ab024ba87480fcaf (diff)
That log line is atrocious when the reg fetch is big.
-rw-r--r--lib/utils/registry.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/utils/registry.js b/lib/utils/registry.js
index 01b5b09e0..efefc1e64 100644
--- a/lib/utils/registry.js
+++ b/lib/utils/registry.js
@@ -144,7 +144,6 @@ function request (method, where, what, cb) {
log("error parsing json", "registry")
return cb(ex, null, data, response)
}
- log(data.trim(), "registry")
if (parsed && parsed.error) return cb(new Error(
parsed.error + (" "+parsed.reason || "")), parsed, data, response)
cb(null, parsed, data, response)