MBILoggerDelegate

@protocol MBILoggerDelegate <NSObject>

@optional

- (void)log:(MBILogLevel)level message:(const char *)message;
- (void)log:(MBILogLevel)level format:(const char *)format arguments:(const char *)arguments;

@end

Undocumented

  • Undocumented

    Declaration

    Objective-C

    - (void)log:(MBILogLevel)level message:(const char *)message;

    Swift

    optional func log(_ level: MBILogLevel, message: UnsafePointer<Int8>!)
  • Undocumented

    Declaration

    Objective-C

    - (void)log:(MBILogLevel)level format:(const char *)format arguments:(const char *)arguments;

    Swift

    optional func log(_ level: MBILogLevel, format: UnsafePointer<Int8>!, arguments: UnsafePointer<Int8>!)