Can I get Rails debugging output in Pow similar to WEBrick? Can I get Rails debugging output in Pow similar to WEBrick? ruby-on-rails ruby-on-rails

Can I get Rails debugging output in Pow similar to WEBrick?


You can check the HTTP requests that Pow receives by running tail -f on the log file of your choice in the ~/Library/Logs/Pow directory. Check out the Pow manual section on Viewing Log Files

If you're looking for Rails specific logs, they'll be located in the log/ directory of your application. For instance, if you want to watch the development log for your application switch to the root director of the application and run:

tail -f log/development.log

There's also less which will give you a few more options, but isn't quite as simple to use.

less -R log/development.log

and then press ctrl-f to follow new output to the file. Pressing h will give you a more detailed help menu.


You can also use a helper gem like powder. I order to show application log just type powder applog


Do you see a log/development.log path in your application? You can typically use that to see what is taking place within Rails. There are also logs for testing and production as well and they might be present for your project depending on the mode that the application is running in.

To access these logs you should use the Terminal and cd to your application, you can then use a utility such as tail to see the logs. A variation of the tail command would also scroll the output when there is new content like the Rails logger normally does.