React native插件项目iOS中讯飞报错Assertion failed: (severity >= 0 && severity < NUM_SEVERITIES), function SetLogDestination

https://github.com/zphhhhh/react-native-speech-iflytek/issues/36

描述:
[IFlySpeechUtility createUtility:initString]的时候报错:

Assertion failed: (severity >= 0 && severity < NUM_SEVERITIES), function SetLogDestination,
file /Users/samyao/Git/trace/node_modules/react-native/third-party/glog-0.3.4/src/logging.cc, line 595.

解决办法:

 

复制代码
inline void LogDestination::SetLogDestination(LogSeverity severity,
                          const char* base_filename) {
//  assert(severity >= 0 && severity < NUM_SEVERITIES);
    char* base_filename_copy = nullptr;                      //初始化char*类型
    base_filename_copy = const_cast<char*>(base_filename);   //const char*类型转char*类型
    if (severity >= 0 && severity < NUM_SEVERITIES) {
      //
    } else {
      severity = 0;
      base_filename_copy = const_cast<char*>("glogTest");
    }
  // Prevent any subtle race conditions by wrapping a mutex lock around
  // all this stuff.
  MutexLock l(&log_mutex);
  //log_destination(severity)->fileobject_.SetBasename(base_filename);
    log_destination(severity)->fileobject_.SetBasename(base_filename_copy);
    
}
复制代码

 

posted @   野生野鸡码农  阅读(779)  评论(1编辑  收藏  举报
编辑推荐:
· 现代计算机视觉入门之:什么是视频
· 你所不知道的 C/C++ 宏知识
· 聊一聊 操作系统蓝屏 c0000102 的故障分析
· SQL Server 内存占用高分析
· .NET Core GC计划阶段(plan_phase)底层原理浅谈
阅读排行:
· 盘点!HelloGitHub 年度热门开源项目
· 某Websocket反爬逆向分析+请求加解密+还原html
· 02现代计算机视觉入门之:什么是视频
· 回顾我的软件开发经历:我与代码生成器的涅槃之路
· DeepSeek V3 两周使用总结
历史上的今天:
2018-07-20 android反编译
2018-07-20 解决在onCreate()过程中获取View的width和Height为0的4种方法
2018-07-20 android装饰者模式
2018-07-20 android中的适配器模式
点击右上角即可分享
微信分享提示