1# -*- coding: binary -*- 2module Rex 3module Logging 4module Sinks 5 6### 7# 8# This class implements the LogSink interface and backs it against stderr 9### 10class Stderr < Rex::Logging::Sinks::Stream 11 12 # 13 # Creates a log sink instance that will be configured to log to stderr 14 # 15 def initialize(*_attrs) 16 super($stderr) 17 end 18 19end 20 21end end end 22 23