Skip to content
Snippets Groups Projects
Select Git revision
  • f542775c15eefd3e0200232dabd8c2887a10f278
  • main default protected
2 results

index.ts

Blame
  • no-options.js 267 B
    const Log = require('../index.js')
    
    let log = new Log()
    
    log.info('This is an Information')
    log.notice('This is a Notice')
    log.warn('This is a Warning')
    log.error('This is an Error')
    log.debug('This is a Debug Message')
    log.fatal('This is a Fatal Message')