LogEvent

public enum LogEvent
extension LogEvent: CustomStringConvertible

The PromiseKit events which may be logged.

/// A promise or guarantee has blocked the main thread
case waitOnMainThread

/// A promise has been deallocated without being resolved
case pendingPromiseDeallocated

/// An error which occurred while fulfilling a promise was swallowed
case cauterized(Error)

/// Errors which give a string error message
case misc (String)
  • A promise or guarantee has blocked the main thread

    Declaration

    Swift

    case waitOnMainThread
  • A promise has been deallocated without being resolved

    Declaration

    Swift

    case pendingPromiseDeallocated
  • A guarantee has been deallocated without being resolved

    Declaration

    Swift

    case pendingGuaranteeDeallocated
  • An error which occurred while resolving a promise was swallowed

    Declaration

    Swift

    case cauterized(Error)
  • Odd arguments to DispatchQueue-compatibility layer

    Declaration

    Swift

    case nilDispatchQueueWithFlags
  • DispatchWorkItem flags specified for non-DispatchQueue Dispatcher

    Declaration

    Swift

    case extraneousFlagsSpecified
  • Declaration

    Swift

    public var description: String { get }