I have an ajax call occurring every n seconds to check queue status and modify a widget's progress bar on my page. This, of course, dumps the call into the log. I would like to filter the action's entry into the log. Can this be done with Logger?
Example
class QueueCallersController < ApplicationController
   # code to stop logger from logging my_ajax_action?       
   def my_action
     # auto log this
   end
   def my_ajax_action
     #  do not log this
   end
end
 
     
     
    