Class: VWOLogger
- Inherits:
-
Object
- Object
- VWOLogger
- Defined in:
- lib/wingify/packages/logger/logger.rb
Overview
logger.rb
Direct Known Subclasses
Instance Method Summary collapse
- #debug(message) ⇒ Object
- #error(message) ⇒ Object
- #info(message) ⇒ Object
-
#trace(message) ⇒ Object
Abstract method definitions for logging at different levels.
- #warn(message) ⇒ Object
Instance Method Details
#debug(message) ⇒ Object
22 23 24 |
# File 'lib/wingify/packages/logger/logger.rb', line 22 def debug() raise NotImplementedError, "You must implement the debug method" end |
#error(message) ⇒ Object
34 35 36 |
# File 'lib/wingify/packages/logger/logger.rb', line 34 def error() raise NotImplementedError, "You must implement the error method" end |
#info(message) ⇒ Object
26 27 28 |
# File 'lib/wingify/packages/logger/logger.rb', line 26 def info() raise NotImplementedError, "You must implement the info method" end |
#trace(message) ⇒ Object
Abstract method definitions for logging at different levels
18 19 20 |
# File 'lib/wingify/packages/logger/logger.rb', line 18 def trace() raise NotImplementedError, "You must implement the trace method" end |
#warn(message) ⇒ Object
30 31 32 |
# File 'lib/wingify/packages/logger/logger.rb', line 30 def warn() raise NotImplementedError, "You must implement the warn method" end |