Class: Workers::LogProxy
- Inherits:
-
Object
- Object
- Workers::LogProxy
- Defined in:
- lib/workers/log_proxy.rb
Instance Attribute Summary collapse
-
#logger ⇒ Object
Returns the value of attribute logger.
Instance Method Summary collapse
- #debug(msg) ⇒ Object
- #error(msg) ⇒ Object
- #info(msg) ⇒ Object
-
#initialize(logger) ⇒ LogProxy
constructor
A new instance of LogProxy.
- #warn(msg) ⇒ Object
Constructor Details
Instance Attribute Details
#logger ⇒ Object
Returns the value of attribute logger.
3 4 5 |
# File 'lib/workers/log_proxy.rb', line 3 def logger @logger end |
Instance Method Details
#debug(msg) ⇒ Object
11 12 13 14 15 |
# File 'lib/workers/log_proxy.rb', line 11 def debug(msg) @logger.debug(msg) if @logger return nil end |
#error(msg) ⇒ Object
29 30 31 32 33 |
# File 'lib/workers/log_proxy.rb', line 29 def error(msg) @logger.error(msg) if @logger return nil end |
#info(msg) ⇒ Object
17 18 19 20 21 |
# File 'lib/workers/log_proxy.rb', line 17 def info(msg) @logger.info(msg) if @logger return nil end |
#warn(msg) ⇒ Object
23 24 25 26 27 |
# File 'lib/workers/log_proxy.rb', line 23 def warn(msg) @logger.warn(msg) if @logger return nil end |