Module: ActiveSupport::TaggedLogging::Formatter

Defined in:
lib/active_support/tagged_logging.rb

Overview

:nodoc:

Instance Method Summary collapse

Instance Method Details

#call(severity, timestamp, progname, msg) ⇒ Object

This method is invoked when a log event occurs.



31
32
33
# File 'lib/active_support/tagged_logging.rb', line 31

def call(severity, timestamp, progname, msg)
  super(severity, timestamp, progname, "#{tags_text}#{msg}")
end

#clear_tags!Object



53
54
55
# File 'lib/active_support/tagged_logging.rb', line 53

def clear_tags!
  current_tags.clear
end

#current_tagsObject



57
58
59
60
61
# File 'lib/active_support/tagged_logging.rb', line 57

def current_tags
  # We use our object ID here to avoid conflicting with other instances
  thread_key = @thread_key ||= "activesupport_tagged_logging_tags:#{object_id}"
  Thread.current[thread_key] ||= []
end

#pop_tags(size = 1) ⇒ Object



49
50
51
# File 'lib/active_support/tagged_logging.rb', line 49

def pop_tags(size = 1)
  current_tags.pop size
end

#push_tags(*tags) ⇒ Object



42
43
44
45
46
47
# File 'lib/active_support/tagged_logging.rb', line 42

def push_tags(*tags)
  tags.flatten!
  tags.reject!(&:blank?)
  current_tags.concat tags
  tags
end

#tagged(*tags) ⇒ Object



35
36
37
38
39
40
# File 'lib/active_support/tagged_logging.rb', line 35

def tagged(*tags)
  new_tags = push_tags(*tags)
  yield self
ensure
  pop_tags(new_tags.size)
end

#tags_textObject



63
64
65
66
67
68
69
70
# File 'lib/active_support/tagged_logging.rb', line 63

def tags_text
  tags = current_tags
  if tags.one?
    "[#{tags[0]}] "
  elsif tags.any?
    tags.collect { |tag| "[#{tag}] " }.join
  end
end