Class: ActiveSupport::TaggedLogging::TagStack
- Defined in:
- activesupport/lib/active_support/tagged_logging.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#tags ⇒ Object
readonly
Returns the value of attribute tags.
Instance Method Summary collapse
- #clear ⇒ Object
- #format_message(message) ⇒ Object
-
#initialize ⇒ TagStack
constructor
A new instance of TagStack.
- #pop_tags(count) ⇒ Object
- #push_tags(tags) ⇒ Object
Constructor Details
#initialize ⇒ TagStack
Returns a new instance of TagStack.
72 73 74 75 |
# File 'activesupport/lib/active_support/tagged_logging.rb', line 72 def initialize @tags = [] @tags_string = nil end |
Instance Attribute Details
#tags ⇒ Object (readonly)
Returns the value of attribute tags
70 71 72 |
# File 'activesupport/lib/active_support/tagged_logging.rb', line 70 def @tags end |
Instance Method Details
#clear ⇒ Object
90 91 92 93 |
# File 'activesupport/lib/active_support/tagged_logging.rb', line 90 def clear @tags_string = nil @tags.clear end |
#format_message(message) ⇒ Object
95 96 97 98 99 100 101 102 103 104 |
# File 'activesupport/lib/active_support/tagged_logging.rb', line 95 def () if @tags.empty? elsif @tags.size == 1 "[#{@tags[0]}] #{}" else @tags_string ||= "[#{@tags.join("] [")}] " "#{@tags_string}#{}" end end |
#pop_tags(count) ⇒ Object
85 86 87 88 |
# File 'activesupport/lib/active_support/tagged_logging.rb', line 85 def (count) @tags_string = nil @tags.pop(count) end |
#push_tags(tags) ⇒ Object
77 78 79 80 81 82 83 |
# File 'activesupport/lib/active_support/tagged_logging.rb', line 77 def () @tags_string = nil .flatten! .reject!(&:blank?) @tags.concat() end |