LogLevel

public enum LogLevel : UInt8

Log levels for internal logging mechanism.

  • Logging is disabled

    Declaration

    Swift

    case none = 255
  • All logs are monitored.

    Declaration

    Swift

    case verbose = 0
  • 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