···200200 * Additional logging destinations to use alongside the built-in console/log stream. These can be any created by buildDestination* functions or other Pino Transports
201201 * */
202202 destinations?: LogLevelStreamEntry[]
203203+ /**
204204+ * Additional Pino Log options that are passed to `pino()` on logger creation
205205+ * */
206206+ pino?: PinoLoggerOptions
203207}
204208```
205209
···167167 * */
168168 pretty?: PrettyOptions
169169 /**
170170- * Additional logging destinations to use alongside the built-in console/log stream. These can be any created by buildDestination* functions or other [Pino Transports](https://getpino.io/#/docs/transports?id=known-transports)
170170+ * Additional logging destinations to use alongside the built-in console/log stream. These can be any created by `buildDestination*` functions or other [Pino Transports](https://getpino.io/#/docs/transports?id=known-transports)
171171 * */
172172 destinations?: LogLevelStreamEntry[]
173173+ /**
174174+ * Additional [Pino Log options](https://getpino.io/#/docs/api?id=options) that are passed to `pino()` on logger creation
175175+ * */
176176+ pino?: PinoLoggerOptions
173177}
174178175179/**
···181185 verbose: 25,
182186 log: 21
183187}
188188+189189+/**
190190+ * Additional [Pino Log options](https://getpino.io/#/docs/api?id=options) that are passed to `pino()` on logger creation
191191+ * */
192192+export type PinoLoggerOptions = Omit<LoggerOptions, 'level' | 'mixin' | 'mixinMergeStrategy' | 'customLevels' | 'useOnlyCustomLevels' | 'transport'>