/
githubmirror
/
metasploit-framework
Обзор
Документация
Войти
/
githubmirror
/
metasploit-framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
lib/rex/logging/sinks/stdout.rb
21 строка
343 B
Alan Foster
Add configurable logging to the console and support stdout sinks
08 дек 2020, 19:23
Не верифицирован
08 дек 2020, 19:23
9e20bb5
Код
Авторство
О чём код?
# -*- coding: binary -*- module Rex module Logging module Sinks ### # # This class implements the LogSink interface and backs it against stdout ### class Stdout < Rex::Logging::Sinks::Stream # # Creates a log sink instance that will be configured to log to stdout # def initialize(*_attrs) super($stdout) end end end end end