views:

73

answers:

3

I have recently finished phase 1 of my Facebook game:

Rails Across Europe

It works fine on my dev system, but other people report errors and timeouts when they try to run it. Does anyone know how I would go about debugging these issues if they don't occur on my system?

Thanks.

+1  A: 

Generally, you need to have traps in your application that record exceptions so that you have a trail to inspect when something goes wrong in the wild. You won't know what to try to repro until you have a specific exception/error.

Dave Swersky
+2  A: 

The usual route is to use logging and error messages to pin down where the error is occuring in the code on production. Then look through it on your dev machine.

Added to this is getting as much info as you can from the people having problems, so that you can find out if it is a problem with particular client configurations.

Glenn Condron
+1  A: 

A few things you can do

  • Introduce additional logging in the area that appear to related to the issue
  • Play the game itself, a lot ;-) from similar environments the users use in order to experience these issues first hand
  • Collect info about the bug reports (try and see if they have some commonality such as same browser, same OS, same time of day...)
mjv