LoggerService

public protocol LoggerService

Describes the available operations to log information

  • Desired log level

    Declaration

    Swift

    var level: LogLevel { get }
  • Logs a Message with the specific Level

    Declaration

    Swift

    func log(withLevel level: LogLevel, message: String, redacted: Bool)

    Parameters

    level

    Describes the level

    message

    The message to be logged

    redacted

    Indicates if the message should be redacted when there’s not a debugger attached to the app