mirror of
https://github.com/log4js-node/log4js-node.git
synced 2025-12-08 19:26:01 +00:00
chore(examples): updated logFaces example for 2.x
This commit is contained in:
parent
5ed50d545f
commit
cffe5bb44b
@ -1,4 +1,4 @@
|
||||
var log4js = require('../lib/log4js');
|
||||
const log4js = require('../lib/log4js');
|
||||
|
||||
/*
|
||||
logFaces server configured with UDP receiver, using JSON format,
|
||||
@ -6,19 +6,20 @@ var log4js = require('../lib/log4js');
|
||||
*/
|
||||
|
||||
log4js.configure({
|
||||
"appenders": [
|
||||
{
|
||||
"type": "logFacesAppender", // (mandatory) appender type
|
||||
"application": "MY-NODEJS", // (optional) name of the application (domain)
|
||||
"remoteHost": "localhost", // (optional) logFaces server host or IP address
|
||||
"port": 55201, // (optional) logFaces UDP receiver port (must use JSON format)
|
||||
"layout": { // (optional) the layout to use for messages
|
||||
"type": "pattern",
|
||||
"pattern": "%m"
|
||||
}
|
||||
appenders: {
|
||||
logFaces: {
|
||||
type: 'logFaces-UDP', // (mandatory) appender type
|
||||
application: 'MY-NODEJS', // (optional) name of the application (domain)
|
||||
remoteHost: 'localhost', // (optional) logFaces server host or IP address
|
||||
port: 55201, // (optional) logFaces UDP receiver port (must use JSON format)
|
||||
layout: { // (optional) the layout to use for messages
|
||||
type: 'pattern',
|
||||
pattern: '%m'
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
categories: { default: { appenders: ['logFaces'], level: 'info' } }
|
||||
});
|
||||
|
||||
var logger = log4js.getLogger("myLogger");
|
||||
logger.info("Testing message %s", "arg1");
|
||||
const logger = log4js.getLogger('myLogger');
|
||||
logger.info('Testing message %s', 'arg1');
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user