Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Run ruby-debug on Heroku

Is there any way to do it? I often have issues that work locally but fail on Heroku for some reason related to the environment. It would be nice to be able to run the debugger there.

like image 858
Reed G. Law Avatar asked Oct 10 '22 17:10

Reed G. Law


1 Answers

Currently apps do not have interactive debugging on Heroku. You do have access to the logger, however.

References

  • See Heroku's docs on Writing to Your Log and Log Retrieval.
like image 190
fdsaas Avatar answered Oct 13 '22 08:10

fdsaas