Class: Cinch::Logger::NullLogger

Inherits:
Logger
  • Object
show all
Defined in:
lib/cinch/logger/null_logger.rb

Instance Method Summary collapse

Constructor Details

#initialize(output = nil) ⇒ NullLogger

Returns a new instance of NullLogger.



5
6
# File 'lib/cinch/logger/null_logger.rb', line 5

def initialize(output = nil)
end

Instance Method Details

#debug(message) ⇒ Object



8
9
# File 'lib/cinch/logger/null_logger.rb', line 8

def debug(message)
end

#log(message, kind = :generic) ⇒ Object



11
12
# File 'lib/cinch/logger/null_logger.rb', line 11

def log(message, kind = :generic)
end

#log_exception(e) ⇒ Object



14
15
# File 'lib/cinch/logger/null_logger.rb', line 14

def log_exception(e)
end