module ActiveSupport::RfTagsText

Public Instance Methods

tags_text() click to toggle source
# 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