LogLevel

public enum LogLevel : String

Used by the logger to set various log levels. You cannot directly use this but the idea is that you will be able to filter based on levels if needed

  • Only logs if DEBUG is defined

    Declaration

    Swift

    case debug = "D"
  • Declaration

    Swift

    case info = "I"
  • Declaration

    Swift

    case verbose = "V"
  • Declaration

    Swift

    case error = "E"
  • Declaration

    Swift

    case warn = "W"