logginator
Advanced tools
Comparing version 1.1.5 to 1.1.6
{ | ||
"name": "logginator", | ||
"version": "1.1.5", | ||
"version": "1.1.6", | ||
"description": "Creates an instance of TaggedLogger", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -23,5 +23,5 @@ Installation | ||
{ | ||
"type": "console" | ||
"transport": "console" | ||
}, { | ||
"type": "syslog" | ||
"transport": "syslog" | ||
} | ||
@@ -36,3 +36,3 @@ ]); | ||
{ | ||
"type": "console" | ||
"transport": "console" | ||
} | ||
@@ -48,3 +48,3 @@ | ||
{ | ||
"type": "syslog" | ||
"transport": "syslog" | ||
} | ||
@@ -69,6 +69,6 @@ | ||
logginator will try to deduce the default system log pipe by trying | ||
`/dev/log` and `/var/run/log`. If both of these fail, logginator will raise | ||
an exception. | ||
`/dev/log`, `/var/run/syslog` and `/var/run/log` in order. If all of these | ||
fail, logginator will raise an exception. | ||
* `host` and `port`: The host and port pair for the TCP or UDP log target if | ||
using any other protocol than `"unix"`. Note that the target syslog daemon | ||
must be configured to accept connections on the specified protocol. |
6502