Updated example to not change the type of a property.

This commit is contained in:
Matteo Collina 2016-07-22 16:41:51 +02:00
Родитель 9536e4b81d
Коммит 08a3a6c6de
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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')
})