Using pino-colada all my log messages are printed as undefined because I've got pino set with useLevelLabels to true and pino-colada only prints the msg property if the log level is a number.
I've moved the line which copies msg to message out of the number conversion function to solve this.
Hi!
Using pino-colada all my log messages are printed as
undefined
because I've got pino set withuseLevelLabels
to true and pino-colada only prints themsg
property if the log level is a number.I've moved the line which copies
msg
tomessage
out of the number conversion function to solve this.Thanks!