Saved Bookmarks
| 1. |
What Is The Log That Has To Seen To Check For An Error In Ruby Rails? |
|
Answer» Rails will report errors from APACHE in log/apache.log and errors from the Ruby code in log/development.log. If you're having a problem, do have a LOOK at what these logs are saying. On Unix and Mac OS X you may run tail -f log/development.log in a separate TERMINAL to monitor your application's EXECUTION. Rails will report errors from Apache in log/apache.log and errors from the Ruby code in log/development.log. If you're having a problem, do have a look at what these logs are saying. On Unix and Mac OS X you may run tail -f log/development.log in a separate terminal to monitor your application's execution. |
|