6

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.

Reed G. Law
  • 3,897
  • 1
  • 41
  • 78
  • Yes, it's when there's a unique issue such as with the filesystem when I really want to use the debugger. – Reed G. Law Jun 21 '11 at 19:10
  • you can't write to the filesystem in heroku (except with /tmp but I don't remember right now exactly), can we see the code? – Mauricio Jun 21 '11 at 19:13
  • It's related to this question: http://stackoverflow.com/questions/6417475/rails-how-can-i-use-system-zip-on-heroku-to-make-a-docx-from-an-xml-template – Reed G. Law Jun 21 '11 at 19:15
  • I doubt this would be possible. Sounds like a good idea though. – thenengah Jul 13 '11 at 21:40

1 Answers1

5

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

References

fdsaas
  • 714
  • 4
  • 10