zen-15-july-logger
v1.1.0
Published
A simple logger utility
Readme
zen-15-july-logger
A minimal logger utility for node.js that prints messages to the console with a [LOG]
Installation
npm install zen-15-july-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.
