LogLevel
public enum LogLevel : Comparable
This enum defines log levels for the framework.
It can be controlled by setting an appropriate value in LockKitConfiguration.logLevel.
-
Log all messages generated by the framework. Useful for debugging, but can get verbose.
Declaration
Swift
case debug -
Log info messages indicating key points of the flow.
Declaration
Swift
case info -
Log only errors generated by the framework.
Declaration
Swift
case error -
Turn logging off completely.
Declaration
Swift
case off
View on GitHub
LogLevel Enumeration Reference