In rails 3.2.0,is it possible to turn off rails logging for rendering of views in ActionView:: LogSubscriber in production environment.
Currently only way i found to
You can directly turn off action_view logger.
Rails.application.configure do config.action_view.logger = nil end