LogLevel

public enum LogLevel : Int32

Maps to Ziti CSDK log levels, which cannot be imported directly

  • WTF

    “What a terrible failure”

    Declaration

    Swift

    case WTF = -2
  • Default log level

    Declaration

    Swift

    case DEFAULT = -1
  • No logging

    Declaration

    Swift

    case NONE
  • Log Errors and above

    Declaration

    Swift

    case ERROR
  • Log Warnings and above

    Declaration

    Swift

    case WARN
  • Log info and above

    Declaration

    Swift

    case INFO
  • Log Debug and above

    Declaration

    Swift

    case DEBUG
  • Log Verbose and above

    Declaration

    Swift

    case VERBOSE
  • Log Trace and above

    Declaration

    Swift

    case TRACE