Class: Log::NoLog

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

Overview

discards all messages

Instance Method Summary collapse

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(*a) ⇒ Object



15
16
# File 'lib/log/nolog.rb', line 15

def method_missing(*a)
end

Instance Method Details

#respond_to?(m, *a) ⇒ Boolean

Returns:

  • (Boolean)


12
13
14
# File 'lib/log/nolog.rb', line 12

def respond_to?(m,*a)
	true
end