aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/tagged_logging.rb
diff options
context:
space:
mode:
authorSemyon Perepelitsa <sema@sema.in>2012-01-21 17:44:05 +0800
committerSemyon Perepelitsa <sema@sema.in>2012-01-21 17:44:05 +0800
commit1729720871d73fa306faca7b05c5c05efa6eec49 (patch)
tree8e54114b44ae232a838c9fb95184503b5658d91b /activesupport/lib/active_support/tagged_logging.rb
parentb7bf3c1a119e02ba5f40aa3df9e0a5be141abb3a (diff)
downloadrails-1729720871d73fa306faca7b05c5c05efa6eec49.tar.gz
rails-1729720871d73fa306faca7b05c5c05efa6eec49.tar.bz2
rails-1729720871d73fa306faca7b05c5c05efa6eec49.zip
Why do we even need a constant here? A variable is fine.
Diffstat (limited to 'activesupport/lib/active_support/tagged_logging.rb')
-rw-r--r--activesupport/lib/active_support/tagged_logging.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/activesupport/lib/active_support/tagged_logging.rb b/activesupport/lib/active_support/tagged_logging.rb
index 1f9f681cdb..c579f1ed51 100644
--- a/activesupport/lib/active_support/tagged_logging.rb
+++ b/activesupport/lib/active_support/tagged_logging.rb
@@ -4,10 +4,10 @@ require 'logger'
module ActiveSupport
# 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"
- # LOGGER.tagged("BCX", "Jason") { LOGGER.info "Stuff" } # Logs "[BCX] [Jason] Stuff"
- # LOGGER.tagged("BCX") { LOGGER.tagged("Jason") { LOGGER.info "Stuff" } } # Logs "[BCX] [Jason] Stuff"
+ # logger = ActiveSupport::TaggedLogging.new(Logger.new(STDOUT))
+ # logger.tagged("BCX") { logger.info "Stuff" } # Logs "[BCX] Stuff"
+ # logger.tagged("BCX", "Jason") { logger.info "Stuff" } # Logs "[BCX] [Jason] Stuff"
+ # logger.tagged("BCX") { logger.tagged("Jason") { logger.info "Stuff" } } # Logs "[BCX] [Jason] Stuff"
#
# This is used by the default Rails.logger as configured by Railties to make it easy to stamp log lines
# with subdomains, request ids, and anything else to aid debugging of multi-user production applications.