npm.io
1.0.8 • Published 3 years ago

ps-logger

Licence
MIT
Version
1.0.8
Deps
1
Size
9 kB
Vulns
0
Weekly
0
Stars
4

ps-logger

screenshot
  • Npm package total downloads

  • imshivanshpatel

shivansh-patel-4915b4171 programming_updates

  • ps-logger is a production grade logger, basically it is used for logging info,warning,error,silly,verbose,prompt and debug statements

File logger added in this release (1.0.7)

usage examples:-

const logger=require('ps-logger');

logger.info("This is info")
logger.warn("This is warning");
logger.error("This is error");
logger.debug("This is debug");
logger.prompt("This is prompt");
logger.verbose("This is verbose");
logger.silly("This is silly");
disabling or enabling color
  • By default it is set to true,so you dont need to set it as true
logger.setColor(false);
In TypeScript
import {info} from "ps-logger";

info(`server is running on port ${port} `)
File Logging
const { logToFile,info } = require("ps-logger");

// set it to `true` to log into the file

// second param is file name and it's optional if you don't pass file name then it will log into ps-logger.log file

logToFile(true,'todaysLog');


info("This will output into log file")

Keywords