LogLevel
public enum LogLevel : Int, Comparable
The enum that represents the logger level.
-
The message that indicates that an error occurred.
Declaration
Swift
case error
-
The message that indicates an unusual behavior which requires special handling.
Declaration
Swift
case warning
-
Informational messages.
Declaration
Swift
case info
-
The message that contains information helpful for debugging purposes.
Declaration
Swift
case debug
-
The message that contains information about the program tracing execution.
Declaration
Swift
case trace
-
Declaration
Swift
public static func < (lhs: `Self`, rhs: `Self`) -> Bool