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