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
You can set an exception handler in the Config, but it only applies to some exceptions. Snap.Internal.Http.Server.httpSession catches and logs exceptions, and it includes the HTTP params in the request. The params contain sensitive information that we must not log, so our only options are:
Turn off all logging with setErrorLog ConfigNoLog
Define an error log action that attempts to parse the message and find sensitive params (yikes!)
The text was updated successfully, but these errors were encountered:
You can set an exception handler in the Config, but it only applies to some exceptions. Snap.Internal.Http.Server.httpSession catches and logs exceptions, and it includes the HTTP params in the request. The params contain sensitive information that we must not log, so our only options are:
The text was updated successfully, but these errors were encountered: