Module: Schematic::Logger
- Included in:
- ConsoleLogger
- Defined in:
- lib/schematic/logger.rb
Instance Method Summary collapse
- #debug(message, *args) ⇒ Object
- #error(message, *args) ⇒ Object
- #info(message, *args) ⇒ Object
- #warn(message, *args) ⇒ Object
Instance Method Details
#debug(message, *args) ⇒ Object
5 6 7 |
# File 'lib/schematic/logger.rb', line 5 def debug(, *args) raise NotImplementedError end |
#error(message, *args) ⇒ Object
17 18 19 |
# File 'lib/schematic/logger.rb', line 17 def error(, *args) raise NotImplementedError end |
#info(message, *args) ⇒ Object
9 10 11 |
# File 'lib/schematic/logger.rb', line 9 def info(, *args) raise NotImplementedError end |
#warn(message, *args) ⇒ Object
13 14 15 |
# File 'lib/schematic/logger.rb', line 13 def warn(, *args) raise NotImplementedError end |