Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I don't have a WP7 device yet. Everything is functional in My App on a Simulator, but when my customer test it, app does not function at all. e.g. VDO is not playing.

Is there a way to get a crash log from Windows Phone 7? (like iPhone).

share|improve this question
what is "VDO"? Have you not got any error handling in your app to capture the exception details? – Matt Lacey Nov 30 '10 at 11:09
Hi Matt, If i have device with me it should be just put a breakpoint but, I don't have device with me. – Jirapong Nov 30 '10 at 11:54
For now, I'm decided to go with self logging based on simple log class at stackoverflow.com/questions/228723/… – Jirapong Dec 1 '10 at 6:54
No sign on 7.1 Mongo to support this importance feature. – Jirapong May 25 '11 at 17:39

2 Answers

up vote 6 down vote accepted

You can easily create your own crash report. Basically this is what you have to do:

  • In your App class add an handler for the UnhandledException event
  • inside the handler prepare a log with everything you need (stacktrace, memory allocated, etc.)
  • use an email composer Task to send the report.
share|improve this answer
1  
Thanks Francesco, This is what i think. The self manage log. But if you learn way that iPhone App generate the crash log and send back to developer with zero effort, you will ask same question as me. – Jirapong Nov 30 '10 at 11:55
so, far no crash log from OS built-in. so, this is the best answer. – Jirapong Dec 7 '10 at 2:08
Sending an email with the crash report is pretty much common practice now. – Ben Cull Jul 23 '11 at 2:17
You can try using BugSense - free, with cool analytics supporting WP7, Android, iOS (I am one of the founders) – Jon Romero Oct 15 '11 at 4:01
care to explain the downvote? – Francesco De Vittori Oct 15 '11 at 14:19

You can also check BugSense which is a cross-platform(iPhone,Android and Windows Phone) tool that collects and analyzes crash reports from mobile apps.

Disclaimer: I have developed the WP7 plugin.

share|improve this answer
Really helpful! – PanosJee Oct 14 '11 at 22:36
1  
If you are affiliated with this product we would like you to disclose this in your answers and in your profile. Thanks. – Kev Jan 19 '12 at 23:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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