diff options
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" |