LogType

public enum LogType : String

Type of log.

  • Use when printing information to console.

    Declaration

    Swift

    case info = "info: "
  • Use when printing exception to console.

    Declaration

    Swift

    case exception = "exception: "
  • Use when printing error to console.

    Declaration

    Swift

    case error = "error: "