module RailsWatcher::Patches::ActionControllerRender

Public Instance Methods

render(*args) click to toggle source
Calls superclass method
# File lib/rails_watcher/patches.rb, line 41
def render *args
  call_stack = RailsWatcher::CallStack.get_instance
  if call_stack
    ret = nil
    method_tag = "render"
    call_stack.log_method_call method_tag do
      ret = super
    end
    ret
  else
    super
  end
end