Files
beef/extensions/dns/logger.rb
soh_cah_toa f4d3858af6 Removed unneeded files in ruby/ subdirectory.
Changed Logger overrides to disable logging instead of using BeEF's
print_* methods. RubyDNS logging is too verbose. The DNS extension will
perform debug logging on its own.
2014-04-22 22:56:21 -04:00

16 lines
356 B
Ruby

#
# Copyright (c) 2006-2014 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# Disables the logger used by RubyDNS due to its excessive verbosity.
class Logger
def debug(msg); end
def info(msg); end
def error(msg); end
def warn(msg); end
end