LogLevel

public enum LogLevel : Int

Specify different importance of logging

  • Basic information about scheduling, running job and completion

    Declaration

    Swift

    case verbose = 1
  • Important but non fatal information

    Declaration

    Swift

    case warning = 2
  • Something went wrong during the scheduling or the execution

    Declaration

    Swift

    case error = 3
  • Describe type of level in human-way

    Declaration

    Swift

    public var description: String { get }