-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtest-log.js
34 lines (29 loc) · 855 Bytes
/
test-log.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
const {createLogger, transports, format } = require('winston');
const { combine, timestamp, label, prettyPrint, json } = format;
const leadentLogstash = require('./leadent-winston.js');
const logger = createLogger({
format: combine (
label({ label: 'right meow!' }),
timestamp(),
prettyPrint(),
json()
),
transports: [
new leadentLogstash({
level: "debug",
port: 5000,
json: true,
host: "localhost",
timeout_connect_retries: 1000,
max_connect_retries: 1000,
node_name: "test",
username: "user",
password: "password",
basicAuth: true
})
],
exitOnError: false
})
logger.debug({stuff:"Hi!"});
logger.error({type: "error happened"})
logger.debug("just a string")