MBXLoggingLevel.h 692 B

12345678910111213141516171819
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. /** State level of a log message. */
  4. // NOLINTNEXTLINE(modernize-use-using)
  5. typedef NS_ENUM(NSInteger, MBXLoggingLevel)
  6. {
  7. /** Verbose log data to understand how the code executes. */
  8. MBXLoggingLevelDebug,
  9. /** Normal application behavior. */
  10. MBXLoggingLevelInfo,
  11. /** To log a situation that might be a problem, or an unusual situation. */
  12. MBXLoggingLevelWarning,
  13. /** A log message providing information when a significant error occurred. */
  14. MBXLoggingLevelError
  15. } NS_SWIFT_NAME(LoggingLevel);
  16. NSString* MBXLoggingLevelToString(MBXLoggingLevel logging_level);