Module: Calendly::Loggable
Overview
Calendly logger utility module.
Instance Method Summary collapse
Instance Method Details
#debug_log(msg) ⇒ Object
18 19 20 |
# File 'lib/calendly/loggable.rb', line 18 def debug_log(msg) log msg, :debug end |
#error_log(msg) ⇒ Object
6 7 8 |
# File 'lib/calendly/loggable.rb', line 6 def error_log(msg) log msg, :error end |
#info_log(msg) ⇒ Object
14 15 16 |
# File 'lib/calendly/loggable.rb', line 14 def info_log(msg) log msg, :info end |
#warn_log(msg) ⇒ Object
10 11 12 |
# File 'lib/calendly/loggable.rb', line 10 def warn_log(msg) log msg, :warn end |