1.0.0 • Published 2 years ago
@nassro190/nlog v1.0.0
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!");
1.0.0
2 years ago