Module: Gelauto::Logger
- Defined in:
- lib/gelauto/logger.rb
Class Method Summary collapse
- .debug(str) ⇒ Object
- .error(str) ⇒ Object
- .fatal(str) ⇒ Object
- .info(str) ⇒ Object
- .warn(str) ⇒ Object
Class Method Details
.debug(str) ⇒ Object
4 5 6 |
# File 'lib/gelauto/logger.rb', line 4 def debug(str) Gelauto.logger.debug(fmt(str)) end |
.error(str) ⇒ Object
16 17 18 |
# File 'lib/gelauto/logger.rb', line 16 def error(str) Gelauto.logger.error(fmt(str)) end |
.fatal(str) ⇒ Object
20 21 22 |
# File 'lib/gelauto/logger.rb', line 20 def fatal(str) Gelauto.logger.fatal(fmt(str)) end |