![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@madgex/datadog-logger
Advanced tools
Require the package:-
const DatadogLogger = require('@madgex/datadog-logger');
To use global logger instance:-
DatadogLogger.Logger.info('Using global logger instance');
To create the console logger (note - sets global logger instance):-
//Set min output level (lower levels won't be logged)
let loggerOptions = { level: 'debug' };
if (process.env.NODE_ENV === 'production') {
//If not set - logs wil be output to console
//Note: myServicePortNo - you will need to ask systems which port your service should log to
loggerOptions.dataDog = { port: myServicePortNo };
}
_logger = await DatadogLogger.createLogger(loggerOptions);
_logger.info('logger is setup');
//OR
DatadogLogger.Logger.info('logger is setup');
Example usages:-
_logger.error(err);
_logger.debug('info', infoObj);
_logger.trace('trace message');
To setup the good reporter for Hapi:-
const goodOptions = {
ops: {
interval: 1000,
},
reporters: {
//Note: use previously created logger
loggerReporter: [DatadogLogger.createGoodReporter(_logger, {
pathsToInclude: ['/v1']
})]
},
};
const server = Hapi.server(...)
await server.register([
...
{ plugin: Good, options: goodOptions }
]);
This module has custom levels equivalent to those used in nlog and serilog:-
const _loggingLevels = {
fatal: 0,
error: 1,
warn: 2,
info: 3,
debug: 4,
trace: 5
};
FAQs
Setup console and Hapi Good logger
We found that @madgex/datadog-logger demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 15 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.