17 lines
195 B
Ruby
17 lines
195 B
Ruby
|
##
|
||
|
# $Id$
|
||
|
#
|
||
|
# Map log sinks for autload
|
||
|
##
|
||
|
|
||
|
module Rex
|
||
|
module Logging
|
||
|
module Sinks
|
||
|
|
||
|
autoload :Flatfile, 'rex/logging/sinks/flatfile'
|
||
|
autoload :Stderr, 'rex/logging/sinks/stderr'
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|