1.1.0 • Published 7 years ago

simple-debugger-node v1.1.0

Weekly downloads
1
License
ISC
Repository
-
Last release
7 years ago

To install the application use command:

npm install simple-debugger-node

To test the application:

npm run test

How to use in application:

var sDebugger = require("simple-debugger-node")({
	logFilePath: "logs/logs.txt",
    logError: true,
    logWarning: true,
    logNormal: false
});

sDebugger.debug("normal", "This is a normal message");
sDebugger.debug("error", "This is an error message");
sDebugger.debug("warning", "This is a warning message");