LogLevel
public enum LogLevel : Int
An enum describing the types of messages to be logged.
-
Log nothing to the console.
Declaration
Swift
case none = 0 -
Only log errors to the console.
Declaration
Swift
case error -
Log messages when requests are sent, and when responses are received, as well as other useful information.
Declaration
Swift
case info
View on GitHub
LogLevel Enumeration Reference