Reputation: 692
I have an adobe air .exe application which randomly crashes sometimes without any clear reason of the cause.
I am investigating ways in which I could run an extra service which is integrated with my app so that when it crashes it works in the same way as the windows error dialog(send error log).
Ideally the log would collect system information such as event log, CPU and ram state, running processes etc
Does anyone know of anything that does that?
Closest thing I have found is airbrake
Thanks
Upvotes: 3
Views: 76
Reputation: 8149
You should look into UncaughtErrorEvent
, which will allow you to listen for any thrown errors that are unhandled. You can then send the data to some service (Google Analytics, maybe). There are two problems with this:
Capabilities
and System
class.
Alternatively, you could use something like the Crashlytics ANE (mobile only, sorry) from Freshplanet which seems to handle this a lot better (this is for hard crashes only, I believe, and won't provide any information from your AIR app itself, since it is lower level than that).
Documentation:
Upvotes: 1