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
}
.shared.log(AuthenticationError.emailInvalid) ErrorLogController
Log an error string:
.shared.log(errorNamed: "Email Invalid") ErrorLogController