I use Rails 5 for Unicorn. When I start visiting a specific page in my instance of my application, I get an error
We're sorry, but something went wrong. If you are the application owner check the logs for more information.
When I look at my myproject / log / production.log, I see a request, but I wonβt explain why the error occurred ...
Started GET "/my_objects/search?utf8=%E2%9C%93&first_name=Dave&last_name=&my_object=&x=12&y=13" for 96.84.106.123 at 2017-12-29 15:34:20 -0500 Processing by my_objectsController#search as HTML Parameters: {"utf8"=>"β", "first_name"=>"Dave", "last_name"=>"", "my_object"=>"", "x"=>"12", "y"=>"13"} Rendering my_objects/search.html.erb within layouts/my_object Rendered my_objects/_search.html.erb (1.3ms)
How to include errors in my log file? The following describes how my registrar is configured in my file. /config/environments/production.rb ...
Rails.application.configure do
source share