Blame view

packages/chivox_aiengine/ios/Classes/CAIEngine/ChivoxAILogLevel.h 493 Bytes
0fa4e405   吴启风   feat: 将语音评测从先声迁移至驰声
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  //
  //  ChivoxAILogLevel.h
  //  CAIEngine
  //
  //  Created by chivox on 2019/11/20.
  //  Copyright © 2019 chivox. All rights reserved.
  //
  
  #ifndef ChivoxAILogLevel_h
  #define ChivoxAILogLevel_h
  
  enum {
      kChivoxAILogLevelDebug = 0,     // 调试信息
      kChivoxAILogLevelInfo = 1,      // 普通信息
      kChivoxAILogLevelNoti = 2,      // 注意信息
      kChivoxAILogLevelWarn = 3,      // 警告信息
      kChivoxAILogLevelError = 4,     // 错误信息
  };
  
  #endif /* ChivoxAILogLevel_h */