Documentation

ErrorLogController

A Swift Controller Class that handles error reporting. Through this single interface you can report to all integrated error logging providers. Console and Bugsnag logging is supported by default.

Usage

Log an error type:

enum AuthenticationError: Error {
    case emailInvalid
}

ErrorLogController.shared.log(AuthenticationError.emailInvalid)

Log an error string:

ErrorLogController.shared.log(errorNamed: "Email Invalid")