LogFlag

@available(iOS 12.0, *)
@objc(BDKLogFlag)
public enum LogFlag : UInt

Log flags.. They are used together with levels to filter out logs.

  • 0…0000001 fatal

    Declaration

    Swift

    case fatal = 0x1
  • 0…0000010 error

    Declaration

    Swift

    case error = 0x2
  • 0…0000100 warning

    Declaration

    Swift

    case warning = 0x4
  • 0…0001000 info

    Declaration

    Swift

    case info = 0x8
  • 0…0010000 debug

    Declaration

    Swift

    case debug = 0x10
  • 0…100000 verbose

    Declaration

    Swift

    case verbose = 0x20