You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function enabled () {
//return log.apply(logger, arguments) - this is what is currently in pino-debug
let message = util.format.apply(util, arguments) // this is how debug.js formats argeuments
return log.apply(logger, [message])
}
The text was updated successfully, but these errors were encountered:
In case of multiple log arguments
native debug.js produces
So it appends all arguments
But in pino-debug it doesn't happen
What happens is just
Possible solution
The text was updated successfully, but these errors were encountered: