Class: Rex::Logging::Sinks::Stdout
- Defined in:
- lib/rex/logging/sinks/stdout.rb
Overview
This class implements the LogSink interface and backs it against stdout
Instance Attribute Summary
Attributes inherited from Stream
Instance Method Summary collapse
-
#initialize(*_attrs) ⇒ Stdout
constructor
Creates a log sink instance that will be configured to log to stdout.
Methods inherited from Stream
Methods included from LogSink
#cleanup, #get_current_timestamp, #log
Constructor Details
#initialize(*_attrs) ⇒ Stdout
Creates a log sink instance that will be configured to log to stdout
15 16 17 |
# File 'lib/rex/logging/sinks/stdout.rb', line 15 def initialize(*_attrs) super($stdout) end |