LogLevel

public enum LogLevel : UInt

The enumeration of log message level

Since

1.2.0
  • no

    Turn off logging.

    Declaration

    Swift

    case no
  • This is an error message.

    Declaration

    Swift

    case error
  • This is a warning message.

    Declaration

    Swift

    case warning
  • This is an info message.

    Declaration

    Swift

    case info
  • This is a debug message.

    Declaration

    Swift

    case debug
  • This is a verbose message.

    Declaration

    Swift

    case verbose
  • all

    Turn all all logging.

    Declaration

    Swift

    case all