log75
Log75 is a convenient, lightweight and customizable logging utility for Node.js
Message types
There are 6 message types available out of the box:
- Blank
- Debug
- Done
- Info
- Warn
- Error
You can easily add more message types by extending the class.
Tables
Log75 can create neat looking tables for you!
logger.info(
logger.table(
'You can make\n' +
'cool tables!'
)
)
logger.table([
'And ones with',
'a separator'
], 'info')
go home · all projects