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
fix published as minor patch to quick-format - thanks @jsumners! (just reinstall and all should be well)
just for reference:
pino.info('%d', undefined) will be '%d'
pino.info('%s', undefined) will be 'undefined'
pino.info('%j', undefined) will be '%j'
pino.info('%d', null) will be '%d'
pino.info('%s', null) will be 'null'
pino.info('%j', null) will be 'null'
This occurs in a rather special situation in my application, but it seems to me like this is something logger should handle gracefully.
The text was updated successfully, but these errors were encountered: