@nassro190/nlog
v1.0.0
Published
Simple Node.js Logging Library
Readme
npm install nlog
const { Logger, LogLevel, nlog } = require("nlog");
const log = new Logger({ production: true, prefix: "MyLibrary" });
log(LogLevel.Info, "Hello, World!");
// or
const newLog = nlog({ production: true, prefix: "MyLibrary" });
newLog(LogLevel.Info, "Hello, World!");