1# 2# Copyright (c) 2006-2025 Wade Alcorn - [email protected] 3# Browser Exploitation Framework (BeEF) - https://beefproject.com 4# See the file 'doc/COPYING' for copying permission 5# 6 7# Disables the logger used by RubyDNS due to its excessive verbosity. 8class Logger 9 def debug(msg = ''); end 10 def info(msg = ''); end 11 def error(msg = ''); end 12 def warn(msg = ''); end 13end 14 15