MBBLoggerDelegate
@protocol MBBLoggerDelegate <NSObject>
@optional
- (void)log:(MBBLogLevel)level message:(const char *)message;
- (void)log:(MBBLogLevel)level format:(const char *)format arguments:(const char *)arguments;
@end
Undocumented
-
Undocumented
Declaration
Objective-C
- (void)log:(MBBLogLevel)level message:(const char *)message;Swift
optional func log(_ level: MBBLogLevel, message: UnsafePointer<Int8>!) -
Undocumented
Declaration
Objective-C
- (void)log:(MBBLogLevel)level format:(const char *)format arguments:(const char *)arguments;Swift
optional func log(_ level: MBBLogLevel, format: UnsafePointer<Int8>!, arguments: UnsafePointer<Int8>!)
View on GitHub
MBBLoggerDelegate Protocol Reference