class Honeybadger::Backend::Debug

integration tests.
backend is primarily for programmatically inspecting JSON payloads in
Logs the notice payload rather than sending it. The purpose of this

def check_in(id)

def check_in(id)
  logger.unknown("checking in debug backend with id=#{id}")
  return Response.new(ENV['DEBUG_BACKEND_STATUS'].to_i, nil) if ENV['DEBUG_BACKEND_STATUS']
  super
end

def notify(feature, payload)

def notify(feature, payload)
  logger.unknown("notifying debug backend of feature=#{feature}\n\t#{payload.to_json}")
  return Response.new(ENV['DEBUG_BACKEND_STATUS'].to_i, nil) if ENV['DEBUG_BACKEND_STATUS']
  super
end