For completion, we should offer an As method like the one in Go 1.13 errors (https://golang.org/pkg/errors/#As). We should try to make this more reliable than Go's version by preventing panics: "As will panic if target is not a non-nil pointer to either a type that implements error, or to any interface type." Seems like we could just return false in these cases instead.
The app for displaying the logs. The project is to keep the record of all the errors and reports filed by the apps while being used by the end users. (Similar to sentry and bugsee)
Error logger and reporting tool for Microsoft Windows that gathers detailed information on an Exception and the application/system running it. Report to the developer web server and/or Github Issues..
❗📝 The system is aimed at software engineers and it will allow them to log error messages in one central place and also provide analysis of the collected data.
For completion, we should offer an
Asmethod like the one in Go 1.13 errors (https://golang.org/pkg/errors/#As). We should try to make this more reliable than Go's version by preventing panics: "As will panic if target is not a non-nil pointer to either a type that implements error, or to any interface type." Seems like we could just return false in these cases instead.