Guest User

Untitled

a guest
Oct 21st, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. var winston = require('winston');
  2.  
  3. var logger = new winston.Logger({
  4. transports: [
  5. new winston.transports.Console({
  6. handleExceptions: true,
  7. json: true
  8. })
  9. ],
  10. exitOnError: false
  11. });
  12.  
  13. setTimeout(function () {
  14. console.log('Normal exit.');
  15. }, 1000);
  16.  
  17. throw new Error('Oops.');
Add Comment
Please, Sign In to add comment