LogLevel
public enum LogLevel
Define how detailed operations should be logged. Here’s the ascending order (from the less detailed to the most detailed level): none, severe, error, warning, info, debug, verbose
-
Log operations that are useful if you are debugging giving aditional information. Most detailed level
Declaration
Swift
case verbose
-
Log operations that are useful if you are debugging
Declaration
Swift
case debug
-
Log operations giving aditional information for basic operations
Declaration
Swift
case info
-
Only log warning messages when needed
Declaration
Swift
case warning
-
Only log error messages when needed
Declaration
Swift
case error