aboutsummaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/node_modules/log4js/examples/loggly-appender.js
blob: 1465c9221e6e205682e1b93ccf7c912f3121a3e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//Note that loggly appender needs node-loggly to work.
//If you haven't got node-loggly installed, you'll get cryptic
//"cannot find module" errors when using the loggly appender
var log4js = require('../lib/log4js');

log4js.configure({
  "appenders": [
    {
      type: "console",
      category: "test"
    },
    {
      "type"     : "loggly",
      "token"    : "12345678901234567890",
      "subdomain": "your-subdomain",
      "tags"     : ["test"],
      "category" : "loggly"
    }
  ]
});

var logger = log4js.getLogger("loggly");
logger.info("Test log message");
//logger.debug("Test log message");