Level
public enum Level : Int, CustomStringConvertible
The logging level.
-
The trace log level.
Declaration
Swift
case trace = 0
-
The debug log level.
Declaration
Swift
case debug = 1
-
The infomative log level.
Declaration
Swift
case info = 2
-
The warning log level.
Declaration
Swift
case warn = 3
-
The error log level.
Declaration
Swift
case error = 4
-
Ctrate a logging level from string.
Declaration
Swift
public init?(string: String)
-
The description represents a string expression.
Declaration
Swift
public var description: String { get }