DingiLoggingLevel

enum DingiLoggingLevel {}

Constants indicating the message’s logging level.

  • None-level messages are ignored.

    Declaration

    Objective-C

    DingiLoggingLevelNone = 0

    Swift

    case none = 0
  • Info-level messages contain information that may be helpful for flow tracing but is not essential.

    Declaration

    Objective-C

    DingiLoggingLevelInfo

    Swift

    case info = 1
  • Debug-level messages contain information that may be helpful for troubleshooting specific problems.

    Declaration

    Objective-C

    DingiLoggingLevelDebug

    Swift

    case debug = 2
  • Error-level messages contain information that is intended to aid in process-level errors.

    Declaration

    Objective-C

    DingiLoggingLevelError

    Swift

    case error = 3
  • Fault-level messages contain system-level error information.

    Declaration

    Objective-C

    DingiLoggingLevelFault

    Swift

    case fault = 4