Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Specify transport and format config as json to create a Winston logger.
Config example:
{
transports: {
Console: {
level: 'verbose',
formatType: 'Console',
colorize: true
},
File: {
level: 'warn',
formatType: 'Json',
filename: 'critical.log'
},
DailyRotateFile: {
level: 'verbose',
formatType: 'Ecs',
filename: 'es-ecs.log',
datePattern: 'YYYY-MM-DD'
}
}
}
const win = require('winston');
const jaggulog = new Jaggulog({
logLevel: 'info',
logLevels: {
error: {level: 0, logFunction: win['error']},
warn: {level: 1, logFunction: win['warn']},
info: {level: 2, logFunction: win['info']},
debug: {level: 3, logFunction: win['debug']},
}
});
jaggulog.log('error', () => { return 'func. error message!'; });
jaggulog.log('warn', ['array', 'warn', 'message!']);
jaggulog.log('info', {'object':'info message!', 'number': 123});
jaggulog.log('debug', 'string, debug message!');
jaggulog.error(() => { return 'func. error message!'; });
jaggulog.warn(['array', 'warn', 'message!']);
jaggulog.info({'object':'info message!', 'number': 123});
jaggulog.debug('string, debug message!');
const jaggulogConsole = new Jaggulog({
logLevel: 'info',
logLevels: {
error: {level: 0, logFunction: console.error},
warn: {level: 1, logFunction: console.warn},
info: {level: 2, logFunction: console.info},
debug: {level: 3, logFunction: console.debug},
}
});
jaggulogConsole.log('error', () => { return 'error message!'; });
jaggulogConsole.log('warn', () => { return 'warn message!'; });
jaggulogConsole.log('info', () => { return 'info message!'; });
jaggulogConsole.log('debug', () => { return 'debug message!'; });
FAQs
A simple log wrapper
We found that jaggulog demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.