Class: Resourceful::StdOutLogger
- Defined in:
- lib/resourceful/http_accessor.rb
Overview
This is the simplest logger. It just writes everything to STDOUT.
Instance Method Summary collapse
Instance Method Details
#debug(*args) ⇒ Object
24 |
# File 'lib/resourceful/http_accessor.rb', line 24 def debug(*args); puts args; end |
#info(*args) ⇒ Object
23 |
# File 'lib/resourceful/http_accessor.rb', line 23 def info(*args); puts args; end |
#warn(*args) ⇒ Object
22 |
# File 'lib/resourceful/http_accessor.rb', line 22 def warn(*args); puts args; end |