Class: DigitsSolver::DummyLogger

Inherits:
Object
  • Object
show all
Defined in:
lib/digits_solver.rb

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(method_name, *args) ⇒ Object (private)



23
24
25
26
27
# File 'lib/digits_solver.rb', line 23

def method_missing(method_name, *args)
  return if %i[debug info warn error fatal].include? method_name

  super
end