LogLevel

@objc
public enum LogLevel : Int

The log level determins what messages should be logged. For example if the log level is set to warn, messages classified as info wont be logged.

  • Nothing should be logged.

    Declaration

    Swift

    case none
  • Only errors should be logged.

    Declaration

    Swift

    case error
  • Warnings and errors should be logged.

    Declaration

    Swift

    case warn
  • Infos, warnings, and errors should be logged.

    Declaration

    Swift

    case info
  • Debug messages, infos, warnings and errors should be logged.

    Declaration

    Swift

    case debug