TrustPinLogLevel

public enum TrustPinLogLevel : Int, Sendable

Represents the severity level of a log message.

Used by the TrustPin logging infrastructure to control what types of messages are recorded or displayed.

  • Logging is disabled.

    Declaration

    Swift

    case none = 0
  • Log only error-level messages.

    Declaration

    Swift

    case error = 1
  • Log informational messages and errors.

    Declaration

    Swift

    case info = 2
  • Log debug, informational, and error messages.

    Declaration

    Swift

    case debug = 3