Module: ActiveSupport::RfTagsText

Defined in:
lib/rf_logger/rails/key_value_tagged_logging.rb

Instance Method Summary collapse

Instance Method Details

#tags_textObject



27
28
29
30
31
32
# File 'lib/rf_logger/rails/key_value_tagged_logging.rb', line 27

def tags_text
  tags = current_tags
  if tags.any?
    tags.collect { |tag| "#{tag} " }.join
  end
end