5
Setting
I know I can configure the logs so that the errors and exceptions are recorded, this is nice, but sometimes it is too boring to read these files.
Question
- How to capture the mistakes and exceptions in order to be able to manipulate them at execution time?
- What impact this can have on the performance of my application?
Goal
There is an online system that interacts with the application, captures errors and shows them on a website (http://bugsnag.com).
The idea is to make an implementation in-house
similar.
Do not respond with indications from other similar systems. the question has scope in the implementation of such functionality, and not in the use of a third party system.
You want to capture them to do what to them? If it is to debug, it is often important to know what the server was doing when the error happened. Personally, I think more difficult do it when logs are separated and I have to keep both open at the same time and keep comparing timestamps (e.g.
access.log
and theerror.log
Apache). Regardless, I consider your question valid.– mgibsonbr