We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 186a49d commit 177c786Copy full SHA for 177c786
benchmarks/child-child.bench.js
@@ -7,7 +7,7 @@ const fs = require('fs')
7
const dest = fs.createWriteStream('/dev/null')
8
const plogNodeStream = pino(dest).child({ a: 'property' }).child({ sub: 'child' })
9
delete require.cache[require.resolve('../')]
10
-const plogDest = require('../')(pino.destination('/dev/null'))
+const plogDest = require('../')(pino.destination('/dev/null')).child({ a: 'property' }).child({ sub: 'child' })
11
12
const plogMinLength = require('../')(pino.destination({ dest: '/dev/null', sync: false, minLength: 4096 }))
13
.child({ a: 'property' })
0 commit comments