LoggingLevel
public enum LoggingLevel : CustomReflectable
extension LogConfiguration.LoggingLevel: CustomStringConvertible
Specifies desired log level and describes the purpose (e.g., error log) and/or importance (e.g., critical log) of the logs. The levels facilitate log filtering.
For more information on log configurator see LogConfigurator
.
For more information on log configuration see LogConfiguration
.
Critical log level.
Declaration
Swift
case critical
Custom mirror implementation.
Declaration
Swift
public var customMirror: Mirror { get }
Debug log level.
Declaration
Swift
case debug
String representation of LoggingLevel
.
Declaration
Swift
public var description: String { get }
Disabled log level.
Declaration
Swift
case disabled
Error log level.
Declaration
Swift
case error
Info log level.
Declaration
Swift
case info
Verbose log level.
Declaration
Swift
case verbose
Warning log level.
Declaration
Swift
case warning