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
If you add an obfuscate option like obfuscate: ['body.password'] and attempt to access req.body.password after the req has been logged (immediate: true for example), you'll receive [HIDDEN] as the value for req.body.password. The logger should deep copy the req/res data (body, headers), rather than assigning, to prevent mutation.
The text was updated successfully, but these errors were encountered:
If you add an obfuscate option like
obfuscate: ['body.password']
and attempt to accessreq.body.password
after the req has been logged (immediate: true
for example), you'll receive[HIDDEN]
as the value forreq.body.password
. The logger should deep copy the req/res data (body, headers), rather than assigning, to prevent mutation.The text was updated successfully, but these errors were encountered: