class Banter::Notifier::StdOutNotifier

Public Class Methods

notify(error, params_hash) click to toggle source
# File lib/banter/notifier.rb, line 8
def self.notify(error, params_hash)
  STDOUT.puts("Error caught: #{error}, #{params_hash}")
end