LogLevel

public enum LogLevel

Represent the severity and importance of any particular log message.

  • Information that may be helpful, but isn’t essential, for troubleshooting errors

    Declaration

    Swift

    case info
  • Verbose information that may be useful during development or while troubleshooting a specific problem

    Declaration

    Swift

    case debug
  • Designates error events that might still allow the application to continue running

    Declaration

    Swift

    case error