Module: ActiveSupport::TaggedLogging::Formatter
- Defined in:
- activesupport/lib/active_support/tagged_logging.rb
Overview
:nodoc:
Instance Method Summary collapse
-
#call(severity, timestamp, progname, msg) ⇒ Object
This method is invoked when a log event occurs.
- #clear_tags! ⇒ Object
- #current_tags ⇒ Object
- #pop_tags(size = 1) ⇒ Object
- #push_tags(*tags) ⇒ Object
- #tagged(*tags) ⇒ Object
- #tags_text ⇒ Object
Instance Method Details
#call(severity, timestamp, progname, msg) ⇒ Object
This method is invoked when a log event occurs.
32 33 34 |
# File 'activesupport/lib/active_support/tagged_logging.rb', line 32 def call(severity, , progname, msg) super(severity, , progname, "#{}#{msg}") end |
#clear_tags! ⇒ Object
54 55 56 |
# File 'activesupport/lib/active_support/tagged_logging.rb', line 54 def .clear end |
#current_tags ⇒ Object
58 59 60 61 62 |
# File 'activesupport/lib/active_support/tagged_logging.rb', line 58 def # We use our object ID here to avoid conflicting with other instances thread_key = @thread_key ||= "activesupport_tagged_logging_tags:#{object_id}" IsolatedExecutionState[thread_key] ||= [] end |
#pop_tags(size = 1) ⇒ Object
50 51 52 |
# File 'activesupport/lib/active_support/tagged_logging.rb', line 50 def (size = 1) .pop size end |
#push_tags(*tags) ⇒ Object
43 44 45 46 47 48 |
# File 'activesupport/lib/active_support/tagged_logging.rb', line 43 def (*) .flatten! .reject!(&:blank?) .concat end |
#tagged(*tags) ⇒ Object
36 37 38 39 40 41 |
# File 'activesupport/lib/active_support/tagged_logging.rb', line 36 def tagged(*) = (*) yield self ensure (.size) end |
#tags_text ⇒ Object
64 65 66 67 68 69 70 71 |
# File 'activesupport/lib/active_support/tagged_logging.rb', line 64 def = if .one? "[#{[0]}] " elsif .any? .collect { |tag| "[#{tag}] " }.join end end |