Skip to content

Instantly share code, notes, and snippets.

@ericbeland
Forked from nhance/method_logger.rb
Last active August 29, 2015 14:17
Show Gist options
  • Save ericbeland/ed7ef0f01805e7904aee to your computer and use it in GitHub Desktop.
Save ericbeland/ed7ef0f01805e7904aee to your computer and use it in GitHub Desktop.
Model.new.foo
module MethodLogger
def self.included(base)
methods = base.instance_methods(false) + base.private_instance_methods(false)
base.class_eval do
methods.each do |method_name|
original_method = instance_method(method_name)
define_method(method_name) do |*args, &block|
Rails.logger.info "-> #{base}##{method_name}(#{args.inspect})"
return_value = original_method.bind(self).call(*args, &block)
Rails.logger.info "<- #{base}##{method_name} #=> #{return_value.inspect}"
return_value
end
end
end
end
end
class Model
include MethodLogging
def foo
"bar"
end
end
-> foo([])
<- foo #=> "bar"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment