class RubyDep::NullLogger
Shamelessly stolen from github.com/karafka/null-logger
Constants
- LOG_LEVELS
Public Instance Methods
Source
# File lib/ruby_dep/logger.rb, line 26 def method_missing(method_name, *args, &block) LOG_LEVELS.include?(method_name.to_s) ? nil : super end
Calls superclass method
Source
# File lib/ruby_dep/logger.rb, line 22 def respond_to_missing?(method_name, include_private = false) LOG_LEVELS.include?(method_name.to_s) || super end
Calls superclass method