vote up 0 vote down star

Hello I'm starting my adventure with Ruby on Rails and as IDE I choose Netbeans. It has bundled server Webrick and it had worked good. But after some changes in my first application it gives me internal error 500 - but nothing shows in console. And older actions give the same result.

How can I find where the problem is? I work on Ubuntu system.

Thanks for help

flag

65% accept rate

3 Answers

vote up 0 vote down check

What you can also do is add the following line to your controller "application.rb":

ActiveRecord::Base.logger = Logger.new(STDOUT)

Then you will get debugging output in WEBrick's "Output" window within Netbeans.

link|flag
vote up 0 vote down

Answered myself - logs/development.log

link|flag
vote up 0 vote down

Your best bet is to always have a terminal window open and to issue the follow

tail -f log/development.log

This will give you a real time, syntax colored feed of your log as you're working with your application.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.