diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-07-18 10:46:52 -0700 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-07-18 10:46:52 -0700 |
commit | ed19c02c8de3789cd26178c50246e8e155d5532f (patch) | |
tree | 59ae31066b52c537a2663eae7fba3698d4b12e05 /activesupport/lib | |
parent | 39441f78e3a4bda8774b0a94214ac53dafb6ee8a (diff) | |
parent | 803008eb97487614e865ba3428ca2658dc11901b (diff) | |
download | rails-ed19c02c8de3789cd26178c50246e8e155d5532f.tar.gz rails-ed19c02c8de3789cd26178c50246e8e155d5532f.tar.bz2 rails-ed19c02c8de3789cd26178c50246e8e155d5532f.zip |
Merge pull request #11486 from wolframarnold/3-2-stable_fix_respond_to_missing_in_tagged_loggging
3-2-stable patch: Add respond_to_missing? in TaggedLoggging
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/tagged_logging.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/tagged_logging.rb b/activesupport/lib/active_support/tagged_logging.rb index 6fff3bc0d4..4b23a1399c 100644 --- a/activesupport/lib/active_support/tagged_logging.rb +++ b/activesupport/lib/active_support/tagged_logging.rb @@ -72,6 +72,10 @@ module ActiveSupport @logger.send(method, *args) end + def respond_to_missing?(*args) + @logger.respond_to? *args + end + private def tags_text tags = current_tags |