Sha256: 3122e7b5c165e40aa84a8dd4a45255be65ac3772512718785116c6d1e7ed413c
Contents?: true
Size: 547 Bytes
Versions: 2
Compression:
Stored size: 547 Bytes
Contents
/* * log-string-exceptions.js: A test fixture for logging string exceptions in winston. * * (C) 2011 Charlie Robbins * MIT LICENCE * */ var path = require('path'), winston = require('../../../lib/winston'); var logger = new (winston.Logger)({ transports: [ new (winston.transports.File)({ filename: path.join(__dirname, '..', 'logs', 'string-exception.log'), handleExceptions: true }) ] }); logger.handleExceptions(); setTimeout(function () { throw 'OMG NEVER DO THIS STRING EXCEPTIONS ARE AWFUL'; }, 1000);
Version data entries
2 entries across 2 versions & 1 rubygems