BDKLogger

Objective-C

enum BDKLogger : NSUInteger {}

Swift

struct Logger : OptionSet

Options describing supported log outputs

  • 0…000001 BDKLogOutputConsole

    This logger will print log statements into console.

    Declaration

    Objective-C

    BDKLoggerConsole = (1 << 0)

    Swift

    static var console: Logger { get }
  • 0…000010 BDKLogOutputFile

    This logger will print log statements into log files saved locally in application cache folder.

    Declaration

    Objective-C

    BDKLoggerFile = (1 << 1)

    Swift

    static var file: Logger { get }