class RubyDep::NullLogger
Shamelessly stolen from github.com/karafka/null-logger
Constants
- LOG_LEVELS
Public Instance Methods
method_missing(method_name, *args, &block)
click to toggle source
Calls superclass method
# 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
respond_to_missing?(method_name, include_private = false)
click to toggle source
Calls superclass method
# 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