Module: ErrorStalker::Backend

Defined in:
lib/error_stalker/backend.rb,
lib/error_stalker/backend/base.rb

Overview

ErrorStalker backends are objects representing a place that ErrorStalker::Client sends exceptions to. A backend simply needs to inherit from ErrorStalker::Backend::Base and override the report method, after which they can be set using the ErrorStalker::Client.backend attribute.

The default backend is an ErrorStalker::Backend::LogFile instance, which logs exception data to a file.

Defined Under Namespace

Classes: Base, InMemory, LogFile, Server