LogLevel

public enum LogLevel: UInt8

Log levels for internal logging mechanism.

  • Only debug logs and of higher importance are logged.

    Declaration

    Swift

    case debug = 1
  • Only info logs and of higher importance are logged.

    Declaration

    Swift

    case info = 2
  • Only warning logs and of higher importance are logged.

    Declaration

    Swift

    case warning = 3
  • Only error logs and of higher importance are logged.

    Declaration

    Swift

    case error = 4