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