LogType
public enum LogType
The type of logger to use.
-
Log using simple Swift print statements
Declaration
Swift
case print
-
Log using NSLog.
Declaration
Swift
case nsLog
-
Log using a custom logger.
Declaration
Swift
case custom(CustomLogger)