From 08a3a6c6de811c3c3a316bcae13d612797138887 Mon Sep 17 00:00:00 2001 From: Matteo Collina Date: Fri, 22 Jul 2016 16:41:51 +0200 Subject: [PATCH] Updated example to not change the type of a property. --- example.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example.js b/example.js index 9f79759ba..166d86b53 100644 --- a/example.js +++ b/example.js @@ -7,7 +7,7 @@ pino.error('this is at error level') pino.info('the answer is %d', 42) pino.info({ obj: 42 }, 'hello world') pino.info({ obj: 42, b: 2 }, 'hello world') -pino.info({ obj: { aa: 'bbb' } }, 'another') +pino.info({ nested: { obj: 42 } }, 'nested') setImmediate(function () { pino.info('after setImmediate') })