Class: ActiveWebhook::Logger

Inherits:
Object
  • Object
show all
Defined in:
lib/active_webhook/logger.rb

Instance Method Summary collapse

Instance Method Details

#debug(msg) ⇒ Object



9
10
11
# File 'lib/active_webhook/logger.rb', line 9

def debug(msg)
  puts msg
end

#error(msg) ⇒ Object



13
14
15
# File 'lib/active_webhook/logger.rb', line 13

def error(msg)
  puts msg
end

#info(msg) ⇒ Object



5
6
7
# File 'lib/active_webhook/logger.rb', line 5

def info(msg)
  puts msg
end

#warn(msg) ⇒ Object



17
18
19
# File 'lib/active_webhook/logger.rb', line 17

def warn(msg)
  puts msg
end