mirror of
https://github.com/log4js-node/log4js-node.git
synced 2025-12-08 19:26:01 +00:00
27 lines
855 B
JavaScript
27 lines
855 B
JavaScript
const log4js = require('../lib/log4js');
|
|
|
|
/*
|
|
logFaces server configured with UDP receiver, using JSON format,
|
|
listening on port 55201 will receive the logs from the appender below.
|
|
*/
|
|
|
|
log4js.configure({
|
|
appenders: {
|
|
logFaces: {
|
|
type: '@log4js-node/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' } },
|
|
});
|
|
|
|
const logger = log4js.getLogger('myLogger');
|
|
logger.info('Testing message %s', 'arg1');
|