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.

  • Verbose log level.

    Declaration

    Swift

    case verbose
  • Debug log level.

    Declaration

    Swift

    case debug
  • Info log level.

    Declaration

    Swift

    case info
  • Warning log level.

    Declaration

    Swift

    case warning
  • Error log level.

    Declaration

    Swift

    case error
  • Critical log level.

    Declaration

    Swift

    case critical
  • Disabled log level.

    Declaration

    Swift

    case disabled
  • Custom mirror implementation.

    Declaration

    Swift

    public var customMirror: Mirror { get }
  • String representation of LoggingLevel.

    Declaration

    Swift

    public var description: String { get }