mirror of
https://github.com/hardenedlinux/harbian-audit.git
synced 2025-07-06 21:34:54 +02:00
10 lines
300 B
JavaScript
10 lines
300 B
JavaScript
const log4js = require('log4js');
|
|
log4js.configure({
|
|
appenders: { helloworld: { type: 'file', filename: 'helloworld.log' } },
|
|
categories: { default: { appenders: ['helloworld'], level: 'debug' } },
|
|
pm2: true
|
|
});
|
|
|
|
const logger = log4js.getLogger('helloworld');
|
|
|
|
module.exports = logger; |