Class: Apadmi::Grout::DefaultLogger
- Inherits:
-
Object
- Object
- Apadmi::Grout::DefaultLogger
- Defined in:
- lib/apadmi/grout/utils/logger.rb
Overview
A basic logger to be used in various places. To be replaced by version injected from fastlane in real use
Instance Method Summary collapse
Instance Method Details
#error(msg) ⇒ Object
7 8 9 |
# File 'lib/apadmi/grout/utils/logger.rb', line 7 def error(msg) puts "ERROR: #{msg}" end |
#message(msg) ⇒ Object
15 16 17 |
# File 'lib/apadmi/grout/utils/logger.rb', line 15 def (msg) puts "MESSAGE: #{msg}" end |
#success(msg) ⇒ Object
11 12 13 |
# File 'lib/apadmi/grout/utils/logger.rb', line 11 def success(msg) puts "SUCCESS: #{msg}" end |