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
Right now all logging of error types must take the form clog.error(message, error), requiring providing a message. But for strongly typed errors, the "message" may just be a restatement of the "type" of the error to some degree, i.e.
Right now all logging of error types must take the form
clog.error(message, error)
, requiring providing a message. But for strongly typed errors, the "message" may just be a restatement of the "type" of the error to some degree, i.e.On one project, we did add direct support for this sort of thing at the app level by adding a type that provides a description, something like:
which would allow adding a
that doesn't need a message. It might be useful to support this at the Steamclog level.
The text was updated successfully, but these errors were encountered: