UNPKG
triathlon-logging
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.1
1.0.0
A global logging library for the Triathlon system.
bitbucket.org/trustiphidev/triathlon-logging
triathlon-logging
/
pino-pretty-transport.js
5 lines
•
215 B
JavaScript
View Raw
1
2
3
4
5
module
.
exports
=
opts
=>
require
(
'pino-pretty'
)({ ...opts,
messageFormat
:
(
log, messageKey
) =>
`
${log[messageKey].toString().replace(/^/,
"\n"
).replace(/\n/g,
"\n --> "
)}
`
,
customPrettifiers
: { } })