MBXLog_Internal.h 833 B

123456789101112131415161718192021222324
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. NS_SWIFT_NAME(Log)
  4. __attribute__((visibility ("default")))
  5. @interface MBXLog : NSObject
  6. // This class provides custom init which should be called
  7. - (nonnull instancetype)init NS_UNAVAILABLE;
  8. // This class provides custom init which should be called
  9. + (nonnull instancetype)new NS_UNAVAILABLE;
  10. + (void)debugForMessage:(nonnull NSString *)message
  11. category:(nullable NSString *)category;
  12. + (void)infoForMessage:(nonnull NSString *)message
  13. category:(nullable NSString *)category;
  14. + (void)warningForMessage:(nonnull NSString *)message
  15. category:(nullable NSString *)category;
  16. + (void)errorForMessage:(nonnull NSString *)message
  17. category:(nullable NSString *)category;
  18. @end