Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
17 lines
839 B
Plaintext
17 lines
839 B
Plaintext
# Diagnostics
|
|
|
|
Pino provides [tracing channel](tc) events that allow insight into the
|
|
internal workings of the library. The currently supported events are:
|
|
|
|
+ `tracing:pino_asJson:start`: emitted when the final serialization process
|
|
of logs is started. The emitted event payload has the following fields:
|
|
- `instance`: the Pino instance associated with the function
|
|
- `arguments`: the arguments passed to the function
|
|
+ `tracing:pino_asJson:end`: emitted at the end of the final serialization
|
|
process. The emitted event payload has the following fields:
|
|
- `instance`: the Pino instance associated with the function
|
|
- `arguments`: the arguments passed to the function
|
|
- `result`: the finalized, newline delimited, log line as a string
|
|
|
|
[tc]: https://nodejs.org/docs/latest/api/diagnostics_channel.html#tracingchannel-channels
|