Skip to content

Commit

Permalink
fix(docs): update multistream example and description (#1649)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cheprer authored Feb 17, 2023
1 parent bc3cdfb commit eafbc90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -1230,7 +1230,7 @@ log.info('this will be written to /tmp/debug.stream.out and /tmp/info.stream.out
log.fatal('this will be written to /tmp/debug.stream.out, /tmp/info.stream.out and /tmp/fatal.stream.out')
```
In order for `multistream` to work, the log level __must__ be set to the lowest level used in the streams array.
In order for `multistream` to work, the log level __must__ be set to the lowest level used in the streams array. Default is `info`.
#### Options
Expand All @@ -1244,7 +1244,7 @@ In order for `multistream` to work, the log level __must__ be set to the lowest
var pino = require('pino')
var multistream = pino.multistream
var streams = [
{stream: process.stdout},
{level: 'debug', stream: process.stdout},
{level: 'error', stream: process.stderr},
]

Expand Down

0 comments on commit eafbc90

Please sign in to comment.