diff options
author | Semyon Perepelitsa <sema@sema.in> | 2012-01-21 17:37:42 +0800 |
---|---|---|
committer | Semyon Perepelitsa <sema@sema.in> | 2012-01-21 17:37:42 +0800 |
commit | b7bf3c1a119e02ba5f40aa3df9e0a5be141abb3a (patch) | |
tree | e693a4a68c50c0b7d9c5b120eabc7d22479c4dfd /activesupport/lib | |
parent | 717510757df8601e241a5cde9466e795ad2b661d (diff) | |
download | rails-b7bf3c1a119e02ba5f40aa3df9e0a5be141abb3a.tar.gz rails-b7bf3c1a119e02ba5f40aa3df9e0a5be141abb3a.tar.bz2 rails-b7bf3c1a119e02ba5f40aa3df9e0a5be141abb3a.zip |
TaggedLogging wraps an object, not a class.
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/tagged_logging.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/tagged_logging.rb b/activesupport/lib/active_support/tagged_logging.rb index e4e61e2964..1f9f681cdb 100644 --- a/activesupport/lib/active_support/tagged_logging.rb +++ b/activesupport/lib/active_support/tagged_logging.rb @@ -2,7 +2,7 @@ require 'active_support/core_ext/object/blank' require 'logger' module ActiveSupport - # Wraps any standard Logger class to provide tagging capabilities. Examples: + # Wraps any standard Logger object to provide tagging capabilities. Examples: # # LOGGER = ActiveSupport::TaggedLogging.new(Logger.new(STDOUT)) # LOGGER.tagged("BCX") { LOGGER.info "Stuff" } # Logs "[BCX] Stuff" |