IMAPlatformConfig.h 670 B

123456789101112131415161718192021222324252627
  1. //
  2. // IMAPlatformConfig.h
  3. // TIMChat
  4. //
  5. // Created by AlexiChen on 16/2/26.
  6. // Copyright © 2016年 AlexiChen. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. // IMAPlatform 参数配置
  10. @interface IMAPlatformConfig : NSObject
  11. @property (nonatomic, readonly) int environment; // 环境
  12. @property (nonatomic, readonly) BOOL enableConsoleLog; // 是否支持后台打印
  13. @property (nonatomic, readonly) NSInteger logLevel; // 日志级别
  14. + (NSDictionary *)logLevelTips;
  15. - (void)chageEnvTo:(int)env;
  16. - (void)chageEnableConsoleTo:(BOOL)enable;
  17. - (void)chageLogLevelTo:(NSInteger)level;
  18. - (NSString *)getLogLevelTip;
  19. @end