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.
187 188 189 |
# File 'lib/puppet/util/log/destinations.rb', line 187 def initialize(logs) @logs = logs end |
Instance Method Details
#<<(value) ⇒ Object
191 192 193 |
# File 'lib/puppet/util/log/destinations.rb', line 191 def <<(value) @logs << value end |