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-24 11:43:27 +0400
committerisaacs <i@izs.me>2010-08-24 11:43:27 +0400
commit42b49994d6c53385e0f865e501f7d3af1b009a8d (patch)
tree9678d96dbb2b02225018fda8555459755e7c6b90
parent4318a17a29f60f37efd7da4ee2206a6abe7e721a (diff)
add silliness
-rw-r--r--lib/utils/log.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/utils/log.js b/lib/utils/log.js
index 0952f65f1..02fafadba 100644
--- a/lib/utils/log.js
+++ b/lib/utils/log.js
@@ -34,8 +34,9 @@ function colorize (msg, color) {
return "\033["+color+"m"+msg+"\033[0m"
}
-var l = 0
- , LEVEL = { verbose : l++
+var l = -1
+ , LEVEL = { silly : l++
+ , verbose : l++
, info : l++
, WARN : l++
, ERROR : l++