Yes, this can be achieved through redirecting rails log to standard output. Write these at your console prompt: ActiveRecord::Base.logger = Logger.new(STDOUT) ActiveRecord::Base.connection_pool.clear_reloadable_connections! Furthermore, you can put these lines in ~/.irbrc file, so that each time you don't need to manually write these 2 lines: require 'rubygems' if ENV.include?('RAILS_ENV') && ENV["RAILS_ENV"] == 'development' ActiveRecord::Base.logger = Logger.new(STDOUT) ActiveRecord::Base.connection_pool.clear_reloadable_connections! end
Friday, November 2, 2012
Is there a way through which I see which mysql queries are fired from ActiveRecord in rails console?
http://stackoverflow.com/questions/4667316/how-to-see-mysql-queries-in-rails-console
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment