New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

smart-logs

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

smart-logs

**smart-logs** is used to create multiple files based on label, base of this package is [winston](https://www.npmjs.com/package/winston)

latest
Source
npmnpm
Version
2.0.0
Version published
Weekly downloads
188
-34.49%
Maintainers
1
Weekly downloads
 
Created
Source

Smart Logger

smart-logs is used to create multiple files based on label, base of this package is winston

Install

npm i smart-logs

Use

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"] }); 

Keywords

winston

FAQs

Package last updated on 07 Jun 2024

Did you know?

Socket

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.

Install

Related posts