0

I recently updated my rails application to rails 5.2 and Ruby Version 2.3.3 to my surprise, a development error in the browser is not showing up as error anymore but with the message

We are sorry, something went wrong If you are the application owner please check logs

while,

config.consider_all_requests_local = true

is present in my development.rb file.

and running RAILS_ENV=development rails s too doesn't help

And all changes I made was by following the rails guide only.

A similar thread exists with no conclusion: here Thanks in advance

rails_newbie
  • 108
  • 1
  • 12

2 Answers2

2

I tried to update the 'web-console' gem and it works.

0

I had the same issue too, when I checked in my config/environments/development.rb the config.consider_all_requests_local = true was set to false.

After that for web console debugging I install gem "better_errors" and everything works fine. Also make sure gem web-console is also installed.

gsumk
  • 809
  • 10
  • 15