Added the basic files for Loggly appender

appender, example, test
not tested yet!
This commit is contained in:
Christiaan Westerbeek
2014-01-10 21:18:16 +01:00
parent bb644a1632
commit 5286c50375
3 changed files with 99 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
//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')
, log
, logmailer
, i = 0;
log4js.configure({
"appenders": [
{
type: "console",
category: "test"
},
{
"type": "loggly",
"token": "12345678901234567890",
"subdomain": "your-subdomain",
"tags": ["test"],
"category": "test"
}
]
});
var logger = log4js.getLogger("test");
logger.info("Test log message");
logger.debug("Test log message");