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
One nice feature of golang's most popular error library pkg/errors is custom formatting for printing errors. This is something that would improve the developer experience by associating stack traces with errors. We should consider adding this type of functionality.
The text was updated successfully, but these errors were encountered:
The user has to know that they need to print the error with a special formatting option.
Collecting the stack trace is a fairly expensive operation and could significantly impact performance if error generation is in an application's hot path.
One nice feature of golang's most popular error library pkg/errors is custom formatting for printing errors. This is something that would improve the developer experience by associating stack traces with errors. We should consider adding this type of functionality.
The text was updated successfully, but these errors were encountered: