When my app crashes, I get a crash report that takes 5 minutes to scroll by. What's the best way to handle this?

link|improve this question

Look at the Error Report on top :) – Zed Aug 29 '09 at 18:02
feedback

2 Answers

up vote 1 down vote accepted

You could pipe the crash dump to a file. The important information is probably at the top.

You could do what Hynek was saying above and configure a sasl error logger handler for the crash dumps: http://erlang.org/doc/man/sasl%5Fapp.html

The default is tty which dumps to your screen and is not terribly helpful as you mentioned. But you could specify that it should use the sasl_report_file_h instead. Then the dump gets logged to a file for easier perusal.

Additional Links:

link|improve this answer
feedback

Just configure your logger.

link|improve this answer
he probably needed more detail than that :-) – Jeremy Wall Sep 2 '09 at 1:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.