Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 468 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 468 Bytes

sp-winston-express

Deprecated

Usage

var log = require('sp-winston-express');
// To use with morgan as log stream:
app.use(morgan('combined', {stream: log.stream}));

// At end of chain to do exception handling add
app.use(log.errorLogger);

// Otherwise use like winston with things like:
log.info('Hi');
log.error('Bad things!');

Changes

0.1.2

  • Corrected formatter raising an exception

0.1.1

  • Added missing dependencies