Class: Cinch::Logger::NullLogger
- Defined in:
- lib/cinch/logger/null_logger.rb
Instance Method Summary collapse
- #debug(message) ⇒ Object
-
#initialize(output = nil) ⇒ NullLogger
constructor
A new instance of NullLogger.
- #log(message, kind = :generic) ⇒ Object
- #log_exception(e) ⇒ Object
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() end |
#log(message, kind = :generic) ⇒ Object
11 12 |
# File 'lib/cinch/logger/null_logger.rb', line 11 def log(, kind = :generic) end |
#log_exception(e) ⇒ Object
14 15 |
# File 'lib/cinch/logger/null_logger.rb', line 14 def log_exception(e) end |