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
after trying out the sample code of PR#1898 with v9.0.0 I sadly must report that the level formatter for browser does not inline the contained attributes anymore, but blindly puts a level object in the resulting log entry.
Expected:
{
time: 1707198967745,label: 'info',level: 30,msg: 'I am logging a message from the middleware'
}
Actual:
{
time: 1707198967745,level: {label: 'info', level: 30},
msg: 'I am logging a message from the middleware'}
The text was updated successfully, but these errors were encountered:
after trying out the sample code of PR#1898 with
v9.0.0
I sadly must report that the level formatter for browser does not inline the contained attributes anymore, but blindly puts alevel
object in the resulting log entry.Expected:
Actual:
The text was updated successfully, but these errors were encountered: