Class: Puppet::Test::LogCollector
- Defined in:
- lib/puppet/util/log/destinations.rb
Instance Method Summary collapse
- #<<(value) ⇒ Object
-
#initialize(logs) ⇒ LogCollector
constructor
A new instance of LogCollector.
Constructor Details
#initialize(logs) ⇒ LogCollector
Returns a new instance of LogCollector.
192 193 194 |
# File 'lib/puppet/util/log/destinations.rb', line 192 def initialize(logs) @logs = logs end |
Instance Method Details
#<<(value) ⇒ Object
196 197 198 |
# File 'lib/puppet/util/log/destinations.rb', line 196 def <<(value) @logs << value end |