zen-my-logger
v1.2.1
Published
A simple logger utility
Readme
#zen-my-logger
A minimal logger utility for Node.js that prints messages to the console with a [LOG]
Installation
npm install zen-my-logger
#API log(message:string)
message: The text you want to log. Prints the message to the console with a [LOG] prefix.
error(err_message:string)
err_message: The text is the error message. Prints the error message to the console with a [ERROR] prefix.
warn(warn_message:string)
warn_message: The text is the Warning message. Prints the warning message to the console with a [WARN] prefix.
