tags:

views:

467

answers:

1

I have a small app on heroku. Whenever I want to see the logs I go to the command line and do

heroku logs

That only shows me about 100 lines. Is there not a way to see complete logs for our application on heroku?

+5  A: 

heroku console

File.open('log/production.rb', 'r').each_line{|line| puts line}

Or something along those lines

glebm
oh wow. cool. thanks
josh
thanx man it works 4 me 2 :)
Salil