
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
**smart-logs** is used to create multiple files based on label, base of this package is [winston](https://www.npmjs.com/package/winston)
smart-logs is used to create multiple files based on label, base of this package is winston
npm i smart-logs
import winston from "winston"; //this is required for transporter
import Logger from "smart-logs";
// for commonjs module
//const winston = require("winston");//this is required for transporter
//const Logger = require("smart-logs");
const logger = new Logger();
//set log directory default will be logs
logger.setLogDir('logs');
//set log file size, default will unlimited
logger.setSize('5m');
//set log formate type
logger.setFormatType('tab');
//add console transporter, it will console each log
logger.transporter([new winston.transports.Console({})])
//add file transporter, it will combined all logs in merge.log file
logger.transporter([new winston.transports.File({filename:'merge.log'})])
const userModuleLog = logger.getLogger('user_module');
const paymentModuleLog = logger.getLogger('payment_module');
//creates user_module_YYYY_MM_DD.log file and add this log
userModuleLog.info('User has been created successfully.', "System User", { id:"abc125", role: "admin" }, { sTag: ["user"] });
//creates payment_module_YYYY_MM_DD.log file and add this log
paymentModuleLog.error('payment of user failed.',{ sTag: ["payment","failed"] });
FAQs
**smart-logs** is used to create multiple files based on label, base of this package is [winston](https://www.npmjs.com/package/winston)
The npm package smart-logs receives a total of 188 weekly downloads. As such, smart-logs popularity was classified as not popular.
We found that smart-logs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.