LoggingLevel
public enum LoggingLevel
The logs console output data amount level where error is a minimum amount and verbose is a maximum.
This affects only the console output and does not affect the internal logs file.
Internal logs file will still log verbose level to have all details for future debugging.
-
All messages will be printed into console output.
Declaration
Swift
case verbose -
Includes
debuglevel messages and helpful data to investigate possible issues.Declaration
Swift
case debug -
Includes
warnlevel messages and informational messages that can be ignored.Declaration
Swift
case info -
Includes
errorlevel messages and not critical warning information.Declaration
Swift
case warn -
Only error messages that most likely need action or at least attention. Min required level.
Declaration
Swift
case error
LoggingLevel Enumeration Reference