When I use rails/server (WEBrick) I get constant debug info (queries, etc) from my rails app as console output. Is there a way to get this debug output with Pow?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can check the HTTP requests that Pow receives by running
tail -fon the log file of your choice in the~/Library/Logs/Powdirectory. Check out the Pow manual section on Viewing Log FilesIf 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:There’s also
lesswhich will give you a few more options, but isn’t quite as simple to use.and then press
ctrl-fto follow new output to the file. Pressinghwill give you a more detailed help menu.