DebugLevel
public enum DebugLevel : Int
-
none – No trace inforomation
Declaration
Swift
case none = 0
-
err – Fatal errors only
Declaration
Swift
case err = 1
-
warn – Abnormal behavior
Declaration
Swift
case warn = 2
-
info – Normal behavior
Declaration
Swift
case info = 3
-
dbg1 – Basic debugging information
Declaration
Swift
case dbg1 = 4
-
dbg2 – Extra debugging information
Declaration
Swift
case dbg2 = 5
-
dbg3 – Very specific debugging information
Declaration
Swift
case dbg3 = 6
-
dbg4 – Extremely verbose debugging information
Declaration
Swift
case dbg4 = 7