ASAPPLogLevel
@objc
public enum ASAPPLogLevel : Int
Represents the verbosity level of the debugging log.
-
Silence.
Declaration
Swift
case none = 0
-
Prints only errors.
Declaration
Swift
case errors = 1
-
Prints errors and warnings.
Declaration
Swift
case warning = 2
-
Prints errors, warnings, and most debugging information.
Declaration
Swift
case debug = 3
-
Prints everything, including very long messages.
Declaration
Swift
case info = 4