aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/tagged_logging.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@plataformatec.com.br>2012-07-18 00:52:20 -0700
committerJosé Valim <jose.valim@plataformatec.com.br>2012-07-18 00:52:20 -0700
commitc08f30ff5fcda7e07cd9275a073acb2091e4b3f7 (patch)
tree52db081cfd3cdf44d3cdcfccfc328232ad434f19 /activesupport/lib/active_support/tagged_logging.rb
parente243a8a32eb4c8777f07ca4b974bd7e38d9477d3 (diff)
parentdc97a9a9ddc98ff65cc4826ac96c8594fec7b8f0 (diff)
downloadrails-c08f30ff5fcda7e07cd9275a073acb2091e4b3f7.tar.gz
rails-c08f30ff5fcda7e07cd9275a073acb2091e4b3f7.tar.bz2
rails-c08f30ff5fcda7e07cd9275a073acb2091e4b3f7.zip
Merge pull request #7084 from LTe/logger_default_separator
Don't use default separator in tagged logger
Diffstat (limited to 'activesupport/lib/active_support/tagged_logging.rb')
-rw-r--r--activesupport/lib/active_support/tagged_logging.rb2
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 5e080df518..974c42ebba 100644
--- a/activesupport/lib/active_support/tagged_logging.rb
+++ b/activesupport/lib/active_support/tagged_logging.rb
@@ -31,7 +31,7 @@ module ActiveSupport
def tags_text
tags = current_tags
if tags.any?
- tags.collect { |tag| "[#{tag}] " }.join
+ tags.collect { |tag| "[#{tag}] " }.join('')
end
end
end