LogLevel

public enum LogLevel : Int, Codable, Equatable

Log levels for SDK logging.

  • No logging

    Declaration

    Swift

    case none = 0
  • Error logs only

    Declaration

    Swift

    case error = 1
  • Error and warning logs

    Declaration

    Swift

    case warning = 2
  • Error, warning, and info logs

    Declaration

    Swift

    case info = 3
  • Error, warning, info, and debug logs

    Declaration

    Swift

    case debug = 4
  • All logs including verbose details

    Declaration

    Swift

    case verbose = 5
  • Default log level (info)

    Declaration

    Swift

    public static let `default`: LogLevel