We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aee078c commit 608add3Copy full SHA for 608add3
Readme.md
@@ -22,4 +22,17 @@ Specifying a specific stream:
22
23
var fs = require('fs')
24
, Log = require('log')
25
- , log = new Log(Log.DEBUG, fs.createWriteStream('my.log'));
+ , log = new Log(Log.DEBUG, fs.createWriteStream('my.log'));
26
+
27
+## Log Levels
28
29
+ Mirror that of syslog:
30
31
+ - 0 __EMERGENCY__ system is unusable
32
+ - 1 __ALERT__ action must be taken immediately
33
+ - 2 __CRITICAL__ the system is in critical condition
34
+ - 3 __ERROR__ error condition
35
+ - 4 __WARNING__ warning condition
36
+ - 5 __NOTICE__ a normal but significant condition
37
+ - 6 __NOTICE__ a purely informational message
38
+ - 7 __DEBUG__ messages to debug an application
0 commit comments