1.0.3 • Published 3 years ago

cugger v1.0.3

Weekly downloads
4
License
MIT
Repository
github
Last release
3 years ago

cugger

Cugger is an easy, fast, and powerful logger module.

Author

License

  • MIT

Special Thanks

  • Acuesoft

Installation

npm install cugger or yarn add cugger

Examples

const Logger = require('cugger')

Logger.log('text') // Result: [2020-01-01 00:00:00] [Log] text
Logger.info('text') // Result: [2020-01-01 00:00:00] [Info] text
Logger.success('text') // Result: [2020-01-01 00:00:00] [Success] text
Logger.alert('text') // Result: [2020-01-01 00:00:00] [Alert] text
Logger.warn('text') // Result: [2020-01-01 00:00:00] [Warn] text
Logger.error('text') // Result: [2020-01-01 00:00:00] [Error] text
Logger.msg('text') // Result: [2020-01-01 00:00:00] [Message] text
Logger.status('text') // Result: [2020-01-01 00:00:00] [Status] text
Logger.debug('text') // Result: [2020-01-01 00:00:00] [Debug] text
1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago