Class: Puppet::Test::LogCollector
- Defined in:
- lib/vendor/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.
209 210 211 |
# File 'lib/vendor/puppet/util/log/destinations.rb', line 209 def initialize(logs) @logs = logs end |
Instance Method Details
#<<(value) ⇒ Object
213 214 215 |
# File 'lib/vendor/puppet/util/log/destinations.rb', line 213 def <<(value) @logs << value end |