Debugging on the production server in Rails
- by ming yeow
how do you effectively debug on live server in rails, whether on a beta/production server?
I tried modifying the file directly on the server, and restarting the app, but the changes does not seem to take effect, or takes a long time to (caching?)
I also tried to do "script/server production" locally, but that is very slow
The other option is to code and deploy, but that is very inefficient.
Anyone has any insights as to how they do this efficiently?