OAuth2LogLevel
public enum OAuth2LogLevel : Int, CustomStringConvertible
extension OAuth2LogLevel: Comparable
Logging levels
-
If you want the logger to log everything.
Declaration
Swift
case trace = 0
-
Only log debug messages.
Declaration
Swift
case debug
-
Only warning messages.
Declaration
Swift
case warn
-
Don’t log anything.
Declaration
Swift
case off
-
Declaration
Swift
public var description: String { get }
-
Declaration
Swift
public static func < (lh: OAuth2LogLevel, rh: OAuth2LogLevel) -> Bool