
Security News
Security Community Slams MIT-linked Report Claiming AI Powers 80% of Ransomware
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.
@monterosa/logger
Advanced tools
The colorful tool for the NodeJS and browsers logs
$ npm install @monterosa/logger
import { LEVELS, setLevel, getLogger } from '@monterosa/logger';
setLevel(LEVELS.DEBUG); // LEVELS.INFO by default
const logger = getLogger('prefix');
logger.info("this is '%s' level", 'info'); // {"@level":"info","@timestamp":"2018-05-15T09:09:11.781Z","@prefix":"prefix","@message":"this is 'info' level","@splat":["info"]}
logger.warn("this is %j", { level: 'info' }); // {"@level":"warn","@timestamp":"2018-05-15T09:09:11.782Z","@prefix":"prefix","@message":"this is {\"level\":\"info\"}","@splat":[{"level":"info"}]}
logger.error("Fatal error %s", new Error('some error')); // {"@level":"error","@timestamp":"2018-05-15T09:09:11.782Z","@prefix":"prefix","@message":"Fatal error Error: some error","@splat":[{}]}
logger.debug("userName=%s, userData=%j", 'z4o4z', data); // {"@level":"error","@timestamp":"2018-05-15T09:09:11.782Z","@prefix":"prefix","@message":"userName=z4o4z, userData={...}","@splat":['z4o4z', {...}]}
LEVELSThe map of available log levels.
LEVELS.ERROR // error
LEVELS.WARN // warn
LEVELS.INFO // info
LEVELS.DEBUG // debug
LEVELS.VERBOSE // verbose
LEVELS.SILLY // silly
setLevelThe method to set log level. Gets level as an argument. By default level is LEVELS.INFO. Can be called in runtime.
setLevel(LEVELS.DEBUG);
getLoggerThe method gets some prefix and returns logger instance with methods below:
logger.error
logger.warn
logger.info
logger.debug
logger.verbose
logger.silly
The prefix will be added to the logs as @prefix, for the NodeJS applications we are recommending to use __filename(global variable) as a prefix for easy debugging and finding something in the logs
setTransportThis method allows you set function which will be called before logging something in the console.
MIT
FAQs
The colorful tool for the NodeJS and browsers logs
The npm package @monterosa/logger receives a total of 1 weekly downloads. As such, @monterosa/logger popularity was classified as not popular.
We found that @monterosa/logger demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.

Research
/Security News
Socket researchers found 10 typosquatted npm packages that auto-run on install, show fake CAPTCHAs, fingerprint by IP, and deploy a credential stealer.