Module: ActiveSupport::TaggedLogging::Formatter
- Defined in:
 - 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(count = 1) ⇒ Object
 - #push_tags(*tags) ⇒ Object
 - #tag_stack ⇒ 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 'lib/active_support/tagged_logging.rb', line 32 def call(severity, , progname, msg) super(severity, , progname, tag_stack.(msg)) end  | 
  
#clear_tags! ⇒ Object
      51 52 53  | 
    
      # File 'lib/active_support/tagged_logging.rb', line 51 def tag_stack.clear end  | 
  
#current_tags ⇒ Object
      61 62 63  | 
    
      # File 'lib/active_support/tagged_logging.rb', line 61 def tag_stack. end  | 
  
#pop_tags(count = 1) ⇒ Object
      47 48 49  | 
    
      # File 'lib/active_support/tagged_logging.rb', line 47 def (count = 1) tag_stack.(count) end  | 
  
#push_tags(*tags) ⇒ Object
      43 44 45  | 
    
      # File 'lib/active_support/tagged_logging.rb', line 43 def (*) tag_stack.() end  | 
  
#tag_stack ⇒ Object
      55 56 57 58 59  | 
    
      # File 'lib/active_support/tagged_logging.rb', line 55 def tag_stack # We use our object ID here to avoid conflicting with other instances @thread_key ||= "activesupport_tagged_logging_tags:#{object_id}" IsolatedExecutionState[@thread_key] ||= TagStack.new end  | 
  
#tagged(*tags) ⇒ Object
      36 37 38 39 40 41  | 
    
      # File 'lib/active_support/tagged_logging.rb', line 36 def tagged(*) pushed_count = tag_stack.().size yield self ensure (pushed_count) end  | 
  
#tags_text ⇒ Object
      65 66 67  | 
    
      # File 'lib/active_support/tagged_logging.rb', line 65 def tag_stack.("") end  |