LogLevel

public enum LogLevel : Comparable

A log level can be used to make logging conditional, e.g. only errors with log level error but log infos, warning and errors with log level info

  • error

    Declaration

    Swift

    case error
  • warning

    Declaration

    Swift

    case warning
  • info

    Declaration

    Swift

    case info
  • debug

    Declaration

    Swift

    case debug