I'm trying to catch all console errors of my Angular aplication, not only the http response error, but also those that are generated in the application. I mean, All console errors, like this
or like this
or like this
What I need is, when I catch some of this error (application errors and http errors), I put it in another service to a database to store the problem and make some stadistics.
I have researched and I have come across these solutions:
First, the angular solution ---> https://angular.io/api/core/ErrorHandler
Also this answers ---> How to get all console error messages in Angular application
this ----> Angular error handling and logging - Call GlobalErrorHandler's handleError
and this ----> https://www.concretepage.com/angular/angular-custom-error-handler
but none seem to work (not even with http responses)
I am trying to do this centrally, I mean, a single service that catches all errors, regardless of the module or component where the error has occurred, and then, send to my other service and store the error in my database... is this possible? and How is possible?
Thank you so much!
This works for me
1- First create an error handler service
2- Create an error service
3- Import ErrorHandlerService and ErrorService in app.module