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

test-report.html

Blame
  • all-options.js 329 B
    const Log = require('../index.js')
    
    let log = new Log({
      name: 'Sample-Application',
      hostname: 'test-server'
    })
    
    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.fatal('This is a Fatal Message')
    log.debug('This is a Debug Message')