export 'bunyan.RotatingFileStream'
This commit is contained in:
parent
83f33890de
commit
b9e3a0d3cb
2 changed files with 4 additions and 0 deletions
|
@ -8,6 +8,9 @@ Known issues:
|
|||
|
||||
## bunyan 1.3.1 (not yet released)
|
||||
|
||||
- Export `bunyan.RotatingFileStream` which is needed if one wants to
|
||||
customize it. E.g. see issue #194.
|
||||
|
||||
- [pull #122] Source Map support for caller line position for [the "src"
|
||||
field](https://github.com/trentm/node-bunyan#src). This could be interesting
|
||||
for [CoffeeScript](http://coffeescript.org/documentation/docs/sourcemap.html)
|
||||
|
|
|
@ -1394,6 +1394,7 @@ module.exports.createLogger = function createLogger(options) {
|
|||
};
|
||||
|
||||
module.exports.RingBuffer = RingBuffer;
|
||||
module.exports.RotatingFileStream = RotatingFileStream;
|
||||
|
||||
// Useful for custom `type == 'raw'` streams that may do JSON stringification
|
||||
// of log records themselves. Usage:
|
||||
|
|
Loading…
Reference in a new issue