Last Updated: February 25, 2016
·
1.308K
· karthiks

SQL Logging in Rails Console IRB

In order to quickly find the SQL queries that are fired against the DB, while you are playing on the Rails Console, all you need to do is set ActiveRecord's Logger to STDOUT as below:

ActiveRecord::Base.logger = Logger.new(STDOUT)